Skip to content

Commit

Permalink
Merge pull request #16919 from bparees/serial
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue.

don't run conformance tests w/ serial unless they are part of the focus

fixes #16626
  • Loading branch information
openshift-merge-robot committed Oct 19, 2017
2 parents b10446e + 37dd59f commit 64bad7b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/extended/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ function os::test::extended::focus () {
# the [Serial] tag to them as needed.
os::log::info ""
os::log::info "Running serial tests with focus ${FOCUS}"
TEST_REPORT_FILE_NAME=focus_serial os::test::extended::run -- -suite "serial.conformance.openshift.io" -test.timeout 6h ${TEST_EXTENDED_ARGS-} || exitstatus=$?
t=$FOCUS
FOCUS="\[Serial\].*?${t}"
TEST_REPORT_FILE_NAME=focus_serial os::test::extended::run -- -test.timeout 6h ${TEST_EXTENDED_ARGS-} || exitstatus=$?
FOCUS="${t}.*?\[Serial\]"
TEST_REPORT_FILE_NAME=focus_serial2 os::test::extended::run -- -test.timeout 6h ${TEST_EXTENDED_ARGS-} || exitstatus=$?

os::test::extended::merge_junit

Expand Down

0 comments on commit 64bad7b

Please sign in to comment.