Fixing problems with tox

Remove options -w and -e. Both those options throws an error:
 nosetests: error: no such option: -w
Run nosetest in a specified dir and add verbose option.

Change-Id: I20c2b95431f755222ae523f5cc0ef217ff157c6c
This commit is contained in:
Artur Basiak 2016-11-16 14:01:03 +01:00
parent 28fe9be738
commit e1860d0a74
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ whitelist_externals = bash
find
commands =
find . -type f -name "*.pyc" -delete
nosetests -w tests/ -e tests_to_fix
nosetests tests/ --verbose
[testenv:pep8]
basepython = python2.7