summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2018-11-09 18:00:52 +0000
committerBenjamin Schubert <ben.c.schubert@gmail.com>2018-11-20 15:20:17 +0000
commitc1df97d67187004de621551bc9436997f578783f (patch)
tree7ca9f4f10fdb1dd43a6f52a215ef2f25cd548a30
parente15b3bbdb41099cc4b912fa616fc8f926afc69fa (diff)
downloadbuildstream-bschubert/add-fedora-nobwrap-tests.tar.gz
gitlab-ci.yml: Extract test command as a variablebschubert/add-fedora-nobwrap-tests
This removes the need of having it synchronized in multiple places
-rw-r--r--.gitlab-ci.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ae28800cd..11a584079 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -13,6 +13,7 @@ stages:
variables:
PYTEST_ADDOPTS: "--color=yes"
INTEGRATION_CACHE: "${CI_PROJECT_DIR}/cache/integration-cache"
+ TEST_COMMAND: 'python3 setup.py test --index-url invalid://uri --addopts --integration'
#####################################################
# Prepare stage #
@@ -77,7 +78,7 @@ source_dist:
# Run the tests from the source distribution, We run as a simple
# user to test for permission issues
- - su buildstream -c 'python3 setup.py test --index-url invalid://uri --addopts --integration'
+ - su buildstream -c "${TEST_COMMAND}"
after_script:
# Collect our reports
@@ -134,7 +135,7 @@ tests-unix:
- dnf erase -y bubblewrap ostree
# Since the unix platform is required to run as root, no user change required
- - python3 setup.py test --index-url invalid://uri --addopts --integration
+ - ${TEST_COMMAND}
tests-fedora-missing-deps:
@@ -152,7 +153,7 @@ tests-fedora-missing-deps:
- useradd -Um buildstream
- chown -R buildstream:buildstream .
- - python3 setup.py test --index-url invalid://uri --addopts --integration
+ - ${TEST_COMMAND}
# Automatically build documentation for every commit, we want to know