Commit 35b6e15d by Christine Lytwynec

add --with-flaky in jenkins script

parent ac03f874
...@@ -95,17 +95,17 @@ END ...@@ -95,17 +95,17 @@ END
"unit") "unit")
case "$SHARD" in case "$SHARD" in
"lms") "lms")
paver test_system -s lms paver test_system -s lms --extra_args="--with-flaky"
paver coverage paver coverage
;; ;;
"cms-js-commonlib") "cms-js-commonlib")
paver test_system -s cms paver test_system -s cms --extra_args="--with-flaky"
paver test_js --coverage --skip_clean paver test_js --coverage --skip_clean
paver test_lib --skip_clean paver test_lib --skip_clean --extra_args="--with-flaky"
paver coverage paver coverage
;; ;;
*) *)
paver test paver test --extra_args="--with-flaky"
paver coverage paver coverage
;; ;;
esac esac
...@@ -162,19 +162,19 @@ END ...@@ -162,19 +162,19 @@ END
;; ;;
"1") "1")
paver test_bokchoy --extra_args="-a shard_1" paver test_bokchoy --extra_args="-a shard_1 --with-flaky"
;; ;;
"2") "2")
paver test_bokchoy --extra_args="-a 'shard_2'" paver test_bokchoy --extra_args="-a 'shard_2' --with-flaky"
;; ;;
"3") "3")
paver test_bokchoy --extra_args="-a 'shard_3'" paver test_bokchoy --extra_args="-a 'shard_3' --with-flaky"
;; ;;
"4") "4")
paver test_bokchoy --extra_args="-a shard_1=False,shard_2=False,shard_3=False" paver test_bokchoy --extra_args="-a shard_1=False,shard_2=False,shard_3=False --with-flaky"
;; ;;
# Default case because if we later define another bok-choy shard on Jenkins # Default case because if we later define another bok-choy shard on Jenkins
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment