Skip to content

Commit

Permalink
incremental change
Browse files Browse the repository at this point in the history
  • Loading branch information
chkuang-g committed Aug 21, 2023
1 parent 5460ff6 commit 7cd5326
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
mkdir -p test_output/testBar/
echo "Test TestFoo1: PASSED" >> test_output/testFoo/TestFoo_test.log
echo "Test TestFoo2: IGNORED" >> test_output/testFoo/TestFoo_test.log
echo "Test TestFoo2: SKIPPED" >> test_output/testFoo/TestFoo_test.log
echo "Test TestFoo3: FAILED" >> test_output/testFoo/TestFoo_test.log
echo "Test TestBar1: PASSED" >> test_output/testBar/TestBar_test.log
echo "Test TestBar2: IGNORED" >> test_output/testBar/TestBar_test.log
echo "Test TestBar2: SKIPPED" >> test_output/testBar/TestBar_test.log
echo "Test TestBar3: FAILED" >> test_output/testBar/TestBar_test.log
- run: cat test_output/test*/*_test.log | grep "^Test .* FAILED$"
Expand All @@ -39,6 +39,8 @@ jobs:

- run: cat test_output/test*/*_test.log | grep "^Test .* SKIPPED$"

- run: cat test_output/test*/*_test.log | grep "^Test .* IGNORED$"

# - name: Obtain Failed tests
# if: always()
# shell: bash
Expand Down

0 comments on commit 7cd5326

Please sign in to comment.