We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69f011d commit d2921b5Copy full SHA for d2921b5
.github/workflows/unit_tests.yaml
@@ -49,10 +49,11 @@ jobs:
49
run: |
50
timestamp=$(date '+%Y-%m-%d_%H-%M-%S')
51
mkdir -p test_results
52
- log_file="test_results/${{ env.output_folder }}_${timestamp}_report.log"
+ log_file="test_results/${timestamp}_report.log"
53
+ echo -e "\nTest Cases Report Report\n" >> $log_file
54
# Run the tests and append output to the log file
55
PYTHONPATH=$(pwd) python -m coverage run --source=src -m unittest discover -v tests/ >> $log_file 2>&1
- # Append the coverage summary to the log file
56
+ echo -e "\nCoverage Report\n" >> $log_file
57
coverage report >> $log_file
58
59
- name: Upload report to Azure
0 commit comments