Skip to content

Commit 8b3c598

Browse files
committed
refactoring run_tests.yaml to allow parallel test executions
1 parent 2d85948 commit 8b3c598

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
test_mode="--test-to-end"
103103
fi
104104
105-
for test_file in "./tests/e2e/test_*.py"; do
105+
for test_file in ./tests/e2e/test_*.py; do
106106
name=$(basename "$test_file" .py | sed 's/^test_//')
107107
run_cmd="~/venv/qa/bin/python3 ./tests/regression.py --only=/regression/e2e?test_${name}/\${ONLY} \$test_mode --trim-results on -o short --native --log ./tests/raw_${name}.log && "
108108
run_cmd+="~/venv/qa/bin/tfs --no-colors transform compact ./tests/raw_${name}.log ./tests/compact_${name}.log && "
@@ -134,7 +134,7 @@ jobs:
134134
with:
135135
name: testflows-report
136136
path: |
137-
tests/report.html
137+
tests/*report.html
138138
if-no-files-found: error
139139
retention-days: 90
140140

0 commit comments

Comments
 (0)