Deprecate support for py26 and py34

This commit is contained in:
Nicholas Charriere 2018-05-06 12:45:38 -07:00
parent 71529bcf99
commit 7fc18ecfd5
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View file

@ -45,6 +45,7 @@ htmlcov/
.coverage
.coverage.*
.cache
.pytest_cache/
# virtualenv
venv/

View file

@ -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]