From 04e67b819cea9a2d8ddd2e399afa626306a31d59 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 23 Aug 2017 11:40:18 -0400 Subject: [PATCH] fixup! Write test output to logs, rather than to stdout to avoid blowing up jenkins --- scripts/generic-ci-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/generic-ci-tests.sh b/scripts/generic-ci-tests.sh index cb6dfef87a..cc94990569 100755 --- a/scripts/generic-ci-tests.sh +++ b/scripts/generic-ci-tests.sh @@ -68,7 +68,7 @@ function emptyxunit { END } -PAVER_ARGS="--with-flaky --cov-args='-p' --with-xunitmp -v" +PAVER_ARGS="--cov-args='-p' --with-xunitmp -v" PARALLEL="--processes=-1" case "$TEST_SUITE" in @@ -109,7 +109,7 @@ case "$TEST_SUITE" in paver test_system -s lms --attr="shard=$SHARD" $PAVER_ARGS $PARALLEL 2> lms-tests.$SHARD.log ;; 4|"noshard") - paver test_system -s lms --attr='!shard' $PAVER_ARGS $PARALLEL 2> lms-tests.REST.log + paver test_system -s lms --attr='!shard' $PAVER_ARGS $PARALLEL 2> lms-tests.4.log ;; *) # If no shard is specified, rather than running all tests, create an empty xunit file. This is a