Skip to content

Instantly share code, notes, and snippets.

@schlamar
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schlamar/7722c21c3f2f1b97c920 to your computer and use it in GitHub Desktop.
Save schlamar/7722c21c3f2f1b97c920 to your computer and use it in GitHub Desktop.
$ py.test --cov jedi test
============================= test session starts ==============================
platform darwin -- Python 2.7.6 -- py-1.4.20 -- pytest-2.5.2
plugins: cov, xdist
collected 912 items
test/conftest.py .
test/test_absolute_import.py ....
test/test_api.py ...
test/test_api_classes.py .....................
test/test_builtin.py .
test/test_cache.py ...
test/test_call_signatures.py .....
test/test_debug.py .
test/test_defined_names.py ......
test/test_docstring.py s....s
test/test_fast_parser.py ..
test/test_full_name.py ..........
test/test_imports.py s
test/test_integration.py ............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
test/test_integration_import.py .......
test/test_integration_keyword.py ....
test/test_interpreter.py ....
test/test_jedi_system.py ..
test/test_namespace_package.py .
test/test_parsing.py .......
test/test_parsing_representation.py .
test/test_regression.py ............
test/test_speed.py ..
test/test_unicode.py ...
test/test_utils.py .........
--------------- coverage: platform darwin, python 2.7.6-final-0 ----------------
Name Stmts Miss Cover
--------------------------------------------------
jedi/__init__ 7 0 100%
jedi/__main__ 4 4 0%
jedi/api 358 19 95%
jedi/api_classes 249 40 84%
jedi/builtin 272 15 94%
jedi/cache 181 15 92%
jedi/common 125 3 98%
jedi/debug 44 1 98%
jedi/docstrings 51 0 100%
jedi/dynamic 344 9 97%
jedi/evaluate 402 10 98%
jedi/evaluate_representation 549 13 98%
jedi/helpers 105 10 90%
jedi/imports 245 6 98%
jedi/interpret 52 0 100%
jedi/keywords 57 6 89%
jedi/modules 269 15 94%
jedi/parser/__init__ 411 18 96%
jedi/parser/fast 300 8 97%
jedi/parser/representation 789 14 98%
jedi/recursion 97 9 91%
jedi/refactoring 121 14 88%
jedi/replstartup 3 3 0%
jedi/settings 28 2 93%
jedi/tokenizer 172 12 93%
jedi/utils 31 2 94%
--------------------------------------------------
TOTAL 5266 248 95%
==================== 909 passed, 3 skipped in 60.21 seconds ====================
$ py.test -n 4 --cov jedi test
============================= test session starts ==============================
platform darwin -- Python 2.7.6 -- py-1.4.20 -- pytest-2.5.2
plugins: cov, xdist
gw0 [912] / gw1 [912] / gw2 [912] / gw3 [912]
scheduling tests via LoadScheduling
............................................................................................................s........s................................................s.........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
--------------- coverage: platform darwin, python 2.7.6-final-0 ----------------
Name Stmts Miss Cover
--------------------------------------------------
jedi/__init__ 7 0 100%
jedi/__main__ 4 4 0%
jedi/api 358 19 95%
jedi/api_classes 249 40 84%
jedi/builtin 272 15 94%
jedi/cache 181 15 92%
jedi/common 125 3 98%
jedi/debug 44 1 98%
jedi/docstrings 51 0 100%
jedi/dynamic 344 9 97%
jedi/evaluate 402 10 98%
jedi/evaluate_representation 549 13 98%
jedi/helpers 105 10 90%
jedi/imports 245 6 98%
jedi/interpret 52 0 100%
jedi/keywords 57 6 89%
jedi/modules 269 15 94%
jedi/parser/__init__ 411 18 96%
jedi/parser/fast 300 8 97%
jedi/parser/representation 789 14 98%
jedi/recursion 97 9 91%
jedi/refactoring 121 14 88%
jedi/replstartup 3 3 0%
jedi/settings 28 2 93%
jedi/tokenizer 172 12 93%
jedi/utils 31 2 94%
--------------------------------------------------
TOTAL 5266 248 95%
==================== 909 passed, 3 skipped in 36.64 seconds ====================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment