summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2020-12-09 12:53:34 +0100
committerJürg Billeter <j@bitron.ch>2020-12-09 12:55:41 +0100
commitc493a99e2aea44549a7881b8df1a83c75b69b501 (patch)
treea7c2d319ef86fa93686b564c9fb068ce698653d8
parentb6ea793df0180b0762891ac821b0d38d074edf9c (diff)
downloadbuildstream-juerg/ci.tar.gz
.gitlab-ci.yml: Disable parallel testing on centos-7.7 and ubuntu-18.04juerg/ci
With Python 3.6 CI frequently fails with `INTERNALERROR` when parallel testing is enabled.
-rw-r--r--.gitlab-ci.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2031e2791..676561f30 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -83,10 +83,16 @@ tests-fedora-33:
tests-ubuntu-18.04:
image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-ubuntu:18.04-${DOCKER_IMAGE_VERSION}
<<: *tests
+ variables:
+ # Disable parallel testing due to frequent INTERNALERROR with Python 3.6
+ PYTEST_ARGS: "--color=yes --integration"
tests-centos-7.7:
- <<: *tests
image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-centos:7.7.1908-${DOCKER_IMAGE_VERSION}
+ <<: *tests
+ variables:
+ # Disable parallel testing due to frequent INTERNALERROR with Python 3.6
+ PYTEST_ARGS: "--color=yes --integration"
# Test the master version of some external plugins
tests-plugins-master: