File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,9 +102,9 @@ jobs:
102
102
test_mode="--test-to-end"
103
103
fi
104
104
105
- for test_file in " ./tests/e2e/test_*.py" ; do
105
+ for test_file in ./tests/e2e/test_*.py; do
106
106
name=$(basename "$test_file" .py | sed 's/^test_//')
107
- 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 && "
107
+ 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 && "
108
108
run_cmd+="~/venv/qa/bin/tfs --no-colors transform compact ./tests/raw_${name}.log ./tests/compact_${name}.log && "
109
109
run_cmd+="~/venv/qa/bin/tfs --no-colors transform nice ./tests/raw_${name}.log ./tests/nice_${name}.log.txt && "
110
110
run_cmd+="~/venv/qa/bin/tfs --no-colors transform short ./tests/raw_${name}.log ./tests/short_${name}.log.txt && "
@@ -134,7 +134,7 @@ jobs:
134
134
with :
135
135
name : testflows-report
136
136
path : |
137
- tests/report.html
137
+ tests/* report.html
138
138
if-no-files-found : error
139
139
retention-days : 90
140
140
You can’t perform that action at this time.
0 commit comments