diff options
-rw-r--r-- | igor.py | 4 | ||||
-rw-r--r-- | tox.ini | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -105,10 +105,10 @@ def run_tests(tracer, *nose_args): if 'COVERAGE_PYTEST' in os.environ: import pytest runner_args = list(nose_args) - pytest.main(runner_args) + return pytest.main(runner_args) else: nose_args = ["nosetests"] + list(nose_args) - nose.core.main(argv=nose_args) + return nose.core.main(argv=nose_args) def run_tests_with_coverage(tracer, *nose_args): @@ -10,7 +10,7 @@ usedevelop = True deps = # https://requires.io/github/nedbat/coveragepy/requirements/ - pytest + git+https://github.com/nedbat/pytest.git@bug2038#egg=pytest==0.0 pip==8.1.2 nose==1.3.7 mock==2.0.0 |