Skip to content

Commit 69f714e

Browse files
committed
fixing remaining_tests path
1 parent 5e3568e commit 69f714e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ jobs:
339339
run: |
340340
FAILED_TESTS_FILE="artifacts/pr-${PR_ID}/pr-${PR_ID}-${WORKFLOW_ID}-test-results/failed_tests.txt"
341341
ALL_TESTS_FILE="artifacts/pr-${PR_ID}/pr-${PR_ID}-${WORKFLOW_ID}-test-results/all_tests.txt"
342-
REMAINING_TESTS_FILE="artifacts/pr-${PR_ID}/${WORKFLOW_ID}/remaining_tests.txt"
342+
REMAINING_TESTS_FILE="artifacts/pr-${PR_ID}/pr-${PR_ID}-${WORKFLOW_ID}-test-results/remaining_tests.txt"
343343
344344
# Debugging
345345
echo "==== Debugging ===="
@@ -371,7 +371,7 @@ jobs:
371371
- name: Generate Test Commands
372372
shell: bash
373373
run: |
374-
python scripts/generate_pytest_commands.py --input artifacts/pr-${PR_ID}/${WORKFLOW_ID}/remaining_tests.txt --output-dir artifacts --pr-id ${PR_ID} --workflow-id ${WORKFLOW_ID} --generate-script --batch-size 20 --tox-env ${{ matrix.tox_env }}
374+
python scripts/generate_pytest_commands.py --input artifacts/pr-${PR_ID}/pr-${PR_ID}-${WORKFLOW_ID}-test-results/remaining_tests.txt --output-dir artifacts --pr-id ${PR_ID} --workflow-id ${WORKFLOW_ID} --generate-script --batch-size 20 --tox-env ${{ matrix.tox_env }}
375375
376376
- name: Display Retrieved Test Results
377377
shell: bash
@@ -387,7 +387,7 @@ jobs:
387387
- name: Run Remaining Test Cases
388388
shell: bash
389389
run: |
390-
REMAINING_TESTS_FILE="artifacts/pr-${PR_ID}/${WORKFLOW_ID}/remaining_tests.txt"
390+
REMAINING_TESTS_FILE="artifacts/pr-${PR_ID}/pr-${PR_ID}-${WORKFLOW_ID}-test-results/remaining_tests.txt"
391391
392392
if [[ -s "$REMAINING_TESTS_FILE" ]]; then
393393
echo "Running remaining test cases using tox env ${{ matrix.tox_env }}..."

0 commit comments

Comments
 (0)