From 20152c6735ee4c7bbc0bf647b8c9bc74191c213d Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Sat, 4 Nov 2023 15:39:12 -0500 Subject: [PATCH] Update test outputs. --- projects/flow-test.py | 2 +- projects/run-tests.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/flow-test.py b/projects/flow-test.py index 0afc2b2..cc3db02 100644 --- a/projects/flow-test.py +++ b/projects/flow-test.py @@ -77,7 +77,7 @@ def run_tests(path, output, timeout): except subprocess.TimeoutExpired: raise RuntimeWarning("Test failed due to timeout.") except FileNotFoundError: - logger.info("No test file!") + logger.info("No test.sh file, skipping tests.") def main(args): diff --git a/projects/run-tests.sh b/projects/run-tests.sh index 023a01c..477966b 100755 --- a/projects/run-tests.sh +++ b/projects/run-tests.sh @@ -8,9 +8,9 @@ for PROJECT in `ls -d */`; do continue fi if [[ "$CI" ]]; then - echo "::group::Testing ${PROJECT}" + echo "::group::Executing ${PROJECT}" else - echo "Testing ${PROJECT}" + echo "Executing ${PROJECT}" fi REQUIREMENTS_FILE="${PROJECT}/requirements.txt" if [ -e ${REQUIREMENTS_FILE} ]; then