diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-07-16 14:46:44 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-07-16 14:46:44 +0200 |
commit | 068ae4e6aaf33bbb34afc390276255dc694438ef (patch) | |
tree | 749af75ea23d89dec0607c9651744bdc7a480839 /tox.ini | |
parent | 5c453073bf49a8ca9de788a81d1d4bb8c5a6ec33 (diff) | |
download | gemato-068ae4e6aaf33bbb34afc390276255dc694438ef.tar.gz |
tox: Use pytest to run tests
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -20,12 +20,13 @@ basepython = python2.7 [testenv] deps = coverage + pytest py27,py34,py35,pypy: pyblake2 py27,py34,py35,pypy: pysha3 py27,pypy: backports.lzma!=0.0.9 py27,pypy: bz2file incompatible-lzma: pyliblzma -commands = coverage run --concurrency=multiprocessing -p -m unittest discover -v +commands = coverage run --concurrency=multiprocessing -p -m pytest -vv {posargs} [testenv:end] deps = |