Be explicit about test requirements in tox.ini
[mudpy.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index aefc426..de62e4e 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -14,7 +14,6 @@ usedevelop = True
 install_command = pip install {opts} {packages}
 setenv =
     PYTHONWARNINGS=default::DeprecationWarning
-deps = -r{toxinidir}/test-requirements.txt
 commands = mudpy_selftest mudpy/tests/fixtures/test_daemon.yaml
 
 [testenv:demo]
@@ -40,12 +39,14 @@ commands =
     sphinx-build -W -d doc/build/doctrees -b html doc/source/ doc/build/html
 
 [testenv:flake8]
+deps = flake8
 commands = flake8 {posargs}
 
 [testenv:selftest_config]
 commands = mudpy_selftest etc/mudpy.yaml
 
 [testenv:yamllint]
+deps = yamllint
 commands = yamllint --strict {posargs} .
 
 [flake8]