Configure pytest's norecursedirs

This skips directories which don't contain unittests and also
virtualenvs (in folders named env*, which is already in gitignore)
as we don't want to execute any tests in there
This commit is contained in:
ThiefMaster 2015-03-08 13:40:16 +01:00
parent 8c4842cf1f
commit ce471ca17c
1 changed files with 3 additions and 0 deletions

View File

@ -3,3 +3,6 @@ release = egg_info -RDb ''
[wheel]
universal = 1
[pytest]
norecursedirs = .* *.egg *.egg-info env* artwork docs