
This is (hopefully) a temporary fix that can be removed as soon as https://github.com/pypa/pip/issues/6239 is fixed, probably thanks to https://github.com/pypa/pip/issues/988
17 lines
242 B
INI
17 lines
242 B
INI
[tox]
|
|
envlist=flake8,py3
|
|
|
|
[testenv:py3]
|
|
deps =
|
|
swh.core[http] >= 0.0.61
|
|
.[testing]
|
|
pytest-cov
|
|
commands =
|
|
pytest --cov=swh --cov-branch {posargs}
|
|
|
|
[testenv:flake8]
|
|
skip_install = true
|
|
deps =
|
|
flake8
|
|
commands =
|
|
{envpython} -m flake8
|