Decouple linters from unit testing

Avoids conflicts between unit testing and linter and avoids
installing unneeded dependencies on both of them.

Change-Id: Id384a998bea298612ec65eaa329f85a38afee3f6
This commit is contained in:
Sorin Sbarnea 2020-09-28 15:46:22 +01:00
parent 40858f3678
commit 8ceeaa5a20
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,3 @@
hacking
sphinx>=1.1.2,<1.2
python-subunit
stestr<3.0.0;python_version<'3.5'

View File

@ -14,6 +14,8 @@ commands =
stestr run --slowest {posargs}
[testenv:pep8]
deps =
hacking
commands = flake8
[testenv:docs]