Skip to content

Commit

Permalink
Update test outputs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Nov 4, 2023
1 parent 6ebd462 commit 20152c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion projects/flow-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions projects/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 20152c6

Please sign in to comment.