Skip to content

Commit

Permalink
refactoring run_tests.yaml to allow parallel test executions
Browse files Browse the repository at this point in the history
  • Loading branch information
Slach committed Nov 10, 2024
1 parent 2d85948 commit 8b3c598
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
test_mode="--test-to-end"
fi
for test_file in "./tests/e2e/test_*.py"; do
for test_file in ./tests/e2e/test_*.py; do
name=$(basename "$test_file" .py | sed 's/^test_//')
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 && "
run_cmd+="~/venv/qa/bin/tfs --no-colors transform compact ./tests/raw_${name}.log ./tests/compact_${name}.log && "
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
with:
name: testflows-report
path: |
tests/report.html
tests/*report.html
if-no-files-found: error
retention-days: 90

Expand Down

0 comments on commit 8b3c598

Please sign in to comment.