We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cbfb81 commit e073c7cCopy full SHA for e073c7c
.github/workflows/run-calculator-ci.yaml
@@ -48,4 +48,7 @@ jobs:
48
- name: Run test
49
run: |-
50
cd calculator/tests
51
- python3 your_tests.py
+ OUTPUT_RUNS=True python3 your_tests.py | tee ./output.txt \
52
+ && grep -q "TEST RUN:" ./output.txt \
53
+ && rm -f output.txt \
54
+ || echo "Either your tests failed or you didn't write any!"
0 commit comments