Ignore __main__ modules

This commit is contained in:
Dave Halter
2017-12-11 09:23:13 +01:00
parent 3a7bc92863
commit fa2712a128
3 changed files with 13 additions and 7 deletions

View File

@@ -5,7 +5,11 @@ import pytest
import jedi
collect_ignore = ["setup.py"]
collect_ignore = [
'setup.py',
'__main__.py',
'jedi/evaluate/compiled/subprocess/__main__.py'
]
# The following hooks (pytest_configure, pytest_unconfigure) are used