We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1417f6b commit bf24771Copy full SHA for bf24771
1 file changed
…/coverage-check-dynamic-e2e-parallel.yml …ub/workflows/coverage-check-parallel.yml.github/workflows/coverage-check-dynamic-e2e-parallel.yml renamed to .github/workflows/coverage-check-parallel.yml
@@ -81,15 +81,17 @@ jobs:
81
82
# Set test filter based on mode
83
if [ "${{ matrix.mode }}" = "sea" ]; then
84
- TEST_FILTER="-k 'extra_params1 or extra_params2'"
+ TEST_FILTER="-k"
85
+ TEST_EXPRESSION="extra_params1 or extra_params2"
86
else
- TEST_FILTER="-k 'extra_params0 or not extra_params'"
87
88
+ TEST_EXPRESSION="extra_params0 or not extra_params"
89
fi
90
91
TEST_NAME=$(basename "${{ matrix.test_file }}" .py)
92
COVERAGE_FILE="coverage-${TEST_NAME}-${{ matrix.mode }}.xml"
93
- poetry run pytest "${{ matrix.test_file }}" $TEST_FILTER \
94
+ poetry run pytest "${{ matrix.test_file }}" "$TEST_FILTER" "$TEST_EXPRESSION" \
95
--cov=src --cov-report=xml:$COVERAGE_FILE --cov-report=term \
96
-v
97
continue-on-error: false
0 commit comments