Deprecate support for py26 and py34
This commit is contained in:
parent
71529bcf99
commit
7fc18ecfd5
2 changed files with 3 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -45,6 +45,7 @@ htmlcov/
|
||||||
.coverage
|
.coverage
|
||||||
.coverage.*
|
.coverage.*
|
||||||
.cache
|
.cache
|
||||||
|
.pytest_cache/
|
||||||
|
|
||||||
# virtualenv
|
# virtualenv
|
||||||
venv/
|
venv/
|
||||||
|
|
4
tox.ini
4
tox.ini
|
@ -1,12 +1,12 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py26, py27, py33, py34, py35, py36, flake8
|
envlist = py27, py34, py35, py36, flake8
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps =
|
deps =
|
||||||
pytest
|
pytest
|
||||||
pytest-cov
|
pytest-cov
|
||||||
commands =
|
commands =
|
||||||
pip install -r requirements.txt --use-wheel
|
pip install -r requirements.txt
|
||||||
py.test --junitxml=junit-{envname}.xml --cov-report xml tests.py
|
py.test --junitxml=junit-{envname}.xml --cov-report xml tests.py
|
||||||
|
|
||||||
[testenv:flake8]
|
[testenv:flake8]
|
||||||
|
|
Loading…
Reference in a new issue