Fix an edge condition around the Nth weekday of the month when
[python_utils.git] / tests / run_tests.sh
index 016ac446467771c4ffde9f53d483cd6845830497..94f0b6b7f6d4372ad316c7336085f1cec3a8cad7 100755 (executable)
@@ -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
@@ -160,11 +160,11 @@ fi
 
 if [ ${COVERAGE} -eq 1 ]; then
     make_header "Code Coverage Report" "${GREEN}"
-    coverage report --omit=config-3.8.py,*_test.py --sort=-cover
+    coverage report --omit=config-3.8.py,*_test.py,*_itest.py --sort=-cover
     echo
-    echo "To recall this report w/o run-running the tests:"
+    echo "To recall this report w/o re-running the tests:"
     echo
-    echo "    $ coverage report --omit=config-3.8.py,*_test.py --sort=-cover"
+    echo "  $ coverage report --omit=config-3.8.py,*_test.py,*_itest.py --sort=-cover"
     echo
     echo "...from the 'tests' directory.  Note that subsequent calls to "
     echo "run_tests.sh with --coverage will klobber previous results.  See:"