diff options
-rw-r--r-- | tox.ini | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -12,7 +12,7 @@ usedevelop = True deps = # Check here for what might be out of date: # https://requires.io/github/nedbat/coveragepy/requirements/ - -rrequirements/pytest.pip + -r requirements/pytest.pip pip==18.1 setuptools==40.4.3 # gevent 1.3 causes a failure: https://bitbucket.org/ned/coveragepy/issues/663/gevent-132-on-windows-fails @@ -66,7 +66,8 @@ basepython = jython # Build the docs so we know if they are successful. We build twice: once with # -q to get all warnings, and once with -QW to get a success/fail status # return. -deps = -rdoc/requirements.pip +deps = + -r doc/requirements.pip commands = doc8 -q --ignore-path doc/_build doc CHANGES.rst README.rst sphinx-build -b html -aqE doc doc/_build/html @@ -75,7 +76,8 @@ commands = sphinx-build -b html -b linkcheck -aEnQW doc doc/_build/html [testenv:lint] -deps = -rrequirements/dev.pip +deps = + -r requirements/dev.pip setenv = LINTABLE = coverage tests igor.py setup.py __main__.py |