diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-08-25 15:59:08 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-08-25 15:59:08 +0200 |
commit | 3331847398b976068d5d5e4489acd23a78aacdbf (patch) | |
tree | 2941de735fdc6276838879acc31a98b512973045 /tox.ini | |
parent | f7cdc66ec10c072624c28384847f7f432bad5118 (diff) | |
download | gemato-3331847398b976068d5d5e4489acd23a78aacdbf.tar.gz |
Stop testing Python 2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = qa,py27,py34,py35,py36,py37,py38,py39,pypy,pypy3,incompatible-lzma +envlist = qa,py34,py35,py36,py37,py38,py39,pypy3 skip_missing_interpreters = True # we operate on sources anyway skipsdist = True @@ -10,20 +10,14 @@ deps = commands = pyflakes {posargs:gemato tests} -[testenv:incompatible-lzma] -basepython = python2.7 - [testenv] deps = coverage pytest pytest-cov pytest-xdist - py27,py34,py35,pypy,pypy3,incompatible-lzma: pyblake2 - py27,py34,py35,pypy: pysha3 - py27,pypy: backports.lzma!=0.0.9 - py27,pypy: bz2file - incompatible-lzma: pyliblzma + py34,py35,pypy3: pyblake2 + py34,py35: pysha3 commands = pytest -vv --cov=gemato --cov-config=.coveragerc -n auto {posargs} |