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