We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 896ff03 commit 205eca1Copy full SHA for 205eca1
1 file changed
.github/workflows/test-and-report_multiple_jobs.yml
@@ -18,7 +18,7 @@ jobs:
18
- id: set-matrix
19
name: Find all smoke test files and build matrix
20
run: |
21
- readarray -t files < <(find tests -type f -path "*consumer/smoke/test_*.py")
+ readarray -t files < <(find tests -type f -path "*/smoke/test_*.py")
22
includes=(); i=0
23
for file in "${files[@]}"; do
24
flow=$(echo "$file" | awk -F'/' '{print $2}')
@@ -84,7 +84,7 @@ jobs:
84
export TEST_EMAIL="$TEST_EMAIL_2"
85
export TEST_PASSWORD="$TEST_PASSWORD_2"
86
fi
87
- pytest -n auto "${{ matrix.test_file }}" -v --json-report
+ pytest -n 2 "${{ matrix.test_file }}" -v --json-report
88
89
- name: List screenshots
90
if: always()
0 commit comments