summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Smith <joshsmith@codethink.co.uk>2018-08-23 21:10:43 +0100
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2018-08-24 10:15:12 +0000
commitb2bd4381a57d289212d4a469e68492c67804c831 (patch)
tree4ae98a8f3e7c13c81921cb8b79ea10cfef441386
parent255f9ee3eb512e64ca5a674c1144345e5d79843b (diff)
downloadbuildstream-b2bd4381a57d289212d4a469e68492c67804c831.tar.gz
.gitlab-ci.yml: Show timing of every test
This helps identifying what tests are slow or if the CI got stuck on some of them
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d93704bb0..8e161ce10 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -83,7 +83,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 'python3 setup.py test --index-url invalid://uri --addopts "--integration --durations=0"'
# Go back to the toplevel and collect our reports
- cd ../..
@@ -137,7 +137,7 @@ tests-unix:
- cd dist && ./unpack.sh && cd buildstream
# Since the unix platform is required to run as root, no user change required
- - python3 setup.py test --index-url invalid://uri --addopts --integration
+ - python3 setup.py test --index-url invalid://uri --addopts "--integration --durations=0"
# Go back to the toplevel and collect our reports
- cd ../..