Skip to content

Commit d2921b5

Browse files
committed
Fixed pipeline
1 parent 69f011d commit d2921b5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/unit_tests.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ jobs:
4949
run: |
5050
timestamp=$(date '+%Y-%m-%d_%H-%M-%S')
5151
mkdir -p test_results
52-
log_file="test_results/${{ env.output_folder }}_${timestamp}_report.log"
52+
log_file="test_results/${timestamp}_report.log"
53+
echo -e "\nTest Cases Report Report\n" >> $log_file
5354
# Run the tests and append output to the log file
5455
PYTHONPATH=$(pwd) python -m coverage run --source=src -m unittest discover -v tests/ >> $log_file 2>&1
55-
# Append the coverage summary to the log file
56+
echo -e "\nCoverage Report\n" >> $log_file
5657
coverage report >> $log_file
5758
5859
- name: Upload report to Azure

0 commit comments

Comments
 (0)