aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.d
diff options
context:
space:
mode:
authorWainer dos Santos Moschetta <wainersm@redhat.com>2021-06-30 15:45:46 -0300
committerCleber Rosa <crosa@redhat.com>2021-07-13 15:44:16 -0400
commit6f651a6d84b64060aa77373a72ba02ff61ad9911 (patch)
tree7c41447d09a44f94379cd9cedfb332004d78e1f7 /.gitlab-ci.d
parent3843a32152a54092f1fc2c8eb54a03da64ad4c6d (diff)
downloadqemu-6f651a6d84b64060aa77373a72ba02ff61ad9911.zip
qemu-6f651a6d84b64060aa77373a72ba02ff61ad9911.tar.gz
qemu-6f651a6d84b64060aa77373a72ba02ff61ad9911.tar.bz2
python: Configure tox to skip missing interpreters
Currently tox tests against the installed interpreters, however if any supported interpreter is absent then it will return fail. It seems not reasonable to expect developers to have all supported interpreters installed on their systems. Luckily tox can be configured to skip missing interpreters. This changed the tox setup so that missing interpreters are skipped by default. On the CI, however, we still want to enforce it tests against all supported. This way on CI the --skip-missing-interpreters=false option is passed to tox. Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Message-Id: <20210630184546.456582-1-wainersm@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> Signed-off-by: Cleber Rosa <crosa@redhat.com>
Diffstat (limited to '.gitlab-ci.d')
-rw-r--r--.gitlab-ci.d/static_checks.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci.d/static_checks.yml b/.gitlab-ci.d/static_checks.yml
index b01f6ec..96dbd9e 100644
--- a/.gitlab-ci.d/static_checks.yml
+++ b/.gitlab-ci.d/static_checks.yml
@@ -43,6 +43,7 @@ check-python-tox:
- make -C python check-tox
variables:
GIT_DEPTH: 1
+ QEMU_TOX_EXTRA_ARGS: --skip-missing-interpreters=false
needs:
job: python-container
allow_failure: true