Minor cleanup of test-requirements and tox

Remove unneeded dependencies from test-requirements.
Remove unused coverage option from tox.ini and wrong default command.

Change-Id: Ie3cc9568715de181e2b2071f72dbcdabf0b5fc09
This commit is contained in:
Andreas Jaeger 2014-01-18 16:19:38 +01:00
parent 8f0654c8bc
commit 5c6fcdde56
2 changed files with 1 additions and 6 deletions

View File

@ -1,5 +1,3 @@
coverage>=3.6 # Hacking already pins down pep8, pyflakes and flake8
flake8==2.0
pep8==1.4.5
hacking>=0.8.0,<0.9 hacking>=0.8.0,<0.9
sphinx>=1.1.2,<1.2 sphinx>=1.1.2,<1.2

View File

@ -13,7 +13,6 @@ setenv =
LC_ALL=C LC_ALL=C
deps = -r{toxinidir}/requirements.txt deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt -r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8] [testenv:pep8]
commands = flake8 commands = flake8
@ -21,8 +20,6 @@ commands = flake8
[testenv:venv] [testenv:venv]
commands = {posargs} commands = {posargs}
[testenv:cover]
commands = python setup.py testr --coverage --testr-args='{posargs}'
[flake8] [flake8]
# H803 skipped on purpose per list discussion. # H803 skipped on purpose per list discussion.