diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-08-26 21:29:50 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-08-26 21:29:50 +0200 |
commit | 5d96305d0b1090d4eb96d37278be44333fdc4c77 (patch) | |
tree | 986d1f8c055655abbf7734ab841e83aeb459f068 | |
parent | 5e046df615fead06e081234f432900146523f645 (diff) | |
download | gemato-5d96305d0b1090d4eb96d37278be44333fdc4c77.tar.gz |
tox.ini: Tests on crippled envs as well
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | tox.ini | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = qa,py36,py37,py38,py39,pypy3 +envlist = qa,py36,py37,py38,py39,pypy3,py3-nogpg,py3-norequests-noresponses,py3-noresponses skip_missing_interpreters = True # we operate on sources anyway skipsdist = True @@ -16,8 +16,10 @@ deps = pytest pytest-cov pytest-xdist - requests - responses + !norequests: requests + !noresponses: responses +setenv = + nogpg: GNUPG = wrong-command commands = pytest -vv --cov=gemato --cov-config=.coveragerc -n auto {posargs} |