
Change requirements file naming to be similar to the requirements-direct.txt name and update tox.ini with the new name
16 lines
183 B
INI
16 lines
183 B
INI
[tox]
|
|
envlist = py35
|
|
|
|
[testenv]
|
|
deps=
|
|
-rrequirements-direct.txt
|
|
-rrequirements-test.txt
|
|
setenv=
|
|
PYTHONWARNING=all
|
|
commands=
|
|
py.test \
|
|
{posargs}
|
|
|
|
[flake8]
|
|
ignore=E302,H306
|