summaryrefslogtreecommitdiff
path: root/share/spack/qa/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'share/spack/qa/setup.sh')
-rwxr-xr-xshare/spack/qa/setup.sh8
1 files changed, 1 insertions, 7 deletions
diff --git a/share/spack/qa/setup.sh b/share/spack/qa/setup.sh
index 4b3f98e330..031554a035 100755
--- a/share/spack/qa/setup.sh
+++ b/share/spack/qa/setup.sh
@@ -11,18 +11,12 @@ SPACK_ROOT="$QA_DIR/../../.."
. "$SPACK_ROOT/share/spack/setup-env.sh"
# Set up some variables for running coverage tests.
-if [[ "$COVERAGE" == "true" && "$TEST_SUITE" == "unit" ]]; then
+if [[ "$COVERAGE" == true ]]; then
coverage=coverage
coverage_run="coverage run"
- coverage_combine="coverage combine"
-elif [[ "$COVERAGE" == "true" && "$TEST_SUITE" == "build" ]]; then
- coverage=coverage
- coverage_run="coverage run --concurrency=multiprocessing"
- coverage_combine="coverage combine"
else
coverage=""
coverage_run=""
- coverage_combine=""
fi
#