summaryrefslogtreecommitdiff
path: root/tests/run_tests.sh
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-03 15:42:44 -0800
committerScott Gasch <[email protected]>2022-02-03 15:42:44 -0800
commit65983ec2e03c97ca44e6374b226f796413bdc637 (patch)
tree938931ca37cbbd0aae427cb61bc5f2563ed7d74e /tests/run_tests.sh
parentf135ec7ae3d7ca347d7489eb28d30b5db98f49de (diff)
Make the parallelize intergration test short enough to run at
checkin time and enable it.
Diffstat (limited to 'tests/run_tests.sh')
-rwxr-xr-xtests/run_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run_tests.sh b/tests/run_tests.sh
index 016ac44..6255a69 100755
--- a/tests/run_tests.sh
+++ b/tests/run_tests.sh
@@ -143,8 +143,8 @@ fi
if [ ${INTEGRATION} -eq 1 ]; then
for test in $(find ${ROOT} -name "*_itest.py" -print); do
BASE=$(basename ${test})
- BASE="${BASE} (integration test)"
- make_header "${BASE}" "${ORANGE}"
+ HDR="${BASE} (integration test)"
+ make_header "${HDR}" "${ORANGE}"
if [ ${COVERAGE} -eq 1 ]; then
coverage run --source ${HOME}/lib --append ${test}
else