This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new a985afa Show Uranium test progress (#452)
a985afa is described below
commit a985afaa7d909cbfc19df0634d6ee6fd1827e455
Author: Brian Neradt <[email protected]>
AuthorDate: Tue Aug 18 20:29:56 2026 -0500
Show Uranium test progress (#452)
Uranium's default pytest output does not identify individual tests as
they complete. Long CI runs therefore appear idle and make it hard to
see which scenario is running or failed.
This enables verbose pytest reporting for every Uranium CI invocation
so each completed test emits one status line. AuTest invocations remain
unchanged.
---
jenkins/branch/autest.pipeline | 2 +-
jenkins/branch/coverage.pipeline | 2 +-
jenkins/branch/quiche.pipeline | 2 +-
jenkins/github/autest.pipeline | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/jenkins/branch/autest.pipeline b/jenkins/branch/autest.pipeline
index fa51513..0265bf9 100644
--- a/jenkins/branch/autest.pipeline
+++ b/jenkins/branch/autest.pipeline
@@ -153,7 +153,7 @@ pipeline {
test_suite="Uranium"
if [ -x
../build/tests/urtest.sh ]; then
cd ../build/tests
- ./urtest.sh
--no-run-in-docker -n 2 || test_failed=1
+ ./urtest.sh
--no-run-in-docker -v -n 2 || test_failed=1
else
test_suite="AuTest"
autest_args=""
diff --git a/jenkins/branch/coverage.pipeline b/jenkins/branch/coverage.pipeline
index f84b177..ac0fe92 100644
--- a/jenkins/branch/coverage.pipeline
+++ b/jenkins/branch/coverage.pipeline
@@ -194,7 +194,7 @@ pipeline {
if [ -x
../build/tests/urtest.sh ]; then
cd ../build/tests
- ./urtest.sh
--no-run-in-docker
+ ./urtest.sh
--no-run-in-docker -v
else
autest_args=""
if [ -d ../cmake ]
diff --git a/jenkins/branch/quiche.pipeline b/jenkins/branch/quiche.pipeline
index 772abdd..a527ae4 100644
--- a/jenkins/branch/quiche.pipeline
+++ b/jenkins/branch/quiche.pipeline
@@ -111,7 +111,7 @@ pipeline {
test_failed=0
test_suite="Uranium"
if [ -x ./urtest.sh ]; then
- ./urtest.sh
--no-run-in-docker || test_failed=1
+ ./urtest.sh
--no-run-in-docker -v || test_failed=1
else
test_suite="AuTest"
pipenv install
diff --git a/jenkins/github/autest.pipeline b/jenkins/github/autest.pipeline
index 8b9386f..a426a9d 100644
--- a/jenkins/github/autest.pipeline
+++ b/jenkins/github/autest.pipeline
@@ -152,7 +152,7 @@ pipeline {
test_suite="Uranium"
if [ -x ../build/tests/urtest.sh ]; then
cd ../build/tests
- ./urtest.sh --no-run-in-docker -n 2 || test_failed=1
+ ./urtest.sh --no-run-in-docker -v -n 2 || test_failed=1
else
test_suite="AuTest"
autest_args=""