Only a couple of the testenvs listed in tox.ini actually made use of
the packages claimed as general test dependencies inherited by all
testenvs. Move these to their corresponding declarations and drop
the old test-requirements.txt file.
+++ /dev/null
-# Copyright (c) 2016-2017 mudpy authors. Permission to use, copy,
-# modify, and distribute this software is granted under terms
-# provided in the LICENSE file distributed with this software.
-
-flake8
-yamllint
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]
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]