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.*
|
||||
.cache
|
||||
.pytest_cache/
|
||||
|
||||
# virtualenv
|
||||
venv/
|
||||
|
|
4
tox.ini
4
tox.ini
|
@ -1,12 +1,12 @@
|
|||
[tox]
|
||||
envlist = py26, py27, py33, py34, py35, py36, flake8
|
||||
envlist = py27, py34, py35, py36, flake8
|
||||
|
||||
[testenv]
|
||||
deps =
|
||||
pytest
|
||||
pytest-cov
|
||||
commands =
|
||||
pip install -r requirements.txt --use-wheel
|
||||
pip install -r requirements.txt
|
||||
py.test --junitxml=junit-{envname}.xml --cov-report xml tests.py
|
||||
|
||||
[testenv:flake8]
|
||||
|
|
Loading…
Reference in a new issue