From 7fc18ecfd59c091fab4f7605d7ee5b3ef02d2307 Mon Sep 17 00:00:00 2001 From: Nicholas Charriere Date: Sun, 6 May 2018 12:45:38 -0700 Subject: [PATCH] Deprecate support for py26 and py34 --- .gitignore | 1 + tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b2e0c88..6c53d83 100644 --- a/.gitignore +++ b/.gitignore @@ -45,6 +45,7 @@ htmlcov/ .coverage .coverage.* .cache +.pytest_cache/ # virtualenv venv/ diff --git a/tox.ini b/tox.ini index 63a16b9..8cb330f 100644 --- a/tox.ini +++ b/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]