Commit 769e063e by jz

Move coverage debug settings to .coveragerc file

parent 9e725303
......@@ -27,6 +27,7 @@ omit =
openedx/core/djangoapps/debug/*
concurrency=multiprocessing
debug = config,dataio,pid
[report]
ignore_errors = True
......
......@@ -77,10 +77,10 @@ case "$TEST_SUITE" in
paver test_system -s lms $PAVER_ARGS
;;
[1-3])
COVERAGE_DEBUG_FILE=reports/coverage_debug.log paver test_system -s lms --attr="shard=$SHARD" --with-flaky --processes=-1 --cov-args="-p --debug=dataio,config,pid" -v --with-xunitmp
COVERAGE_DEBUG_FILE=reports/coverage_debug.log paver test_system -s lms --attr="shard=$SHARD" --with-flaky --processes=-1 --cov-args="-p" -v --with-xunitmp
;;
4|"noshard")
COVERAGE_DEBUG_FILE=reports/coverage_debug.log paver test_system -s lms --attr='!shard' --with-flaky --processes=-1 --cov-args="-p --debug=dataio,config,pid" -v --with-xunitmp
COVERAGE_DEBUG_FILE=reports/coverage_debug.log paver test_system -s lms --attr='!shard' --with-flaky --processes=-1 --cov-args="-p" -v --with-xunitmp
;;
*)
# If no shard is specified, rather than running all tests, create an empty xunit file. This is a
......
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