Skip to content

Commit

Permalink
Pytest: Enable using markers
Browse files Browse the repository at this point in the history
Fix an oversight from #2297
  • Loading branch information
PeterNerlich authored Feb 4, 2025
1 parent 09830da commit 6e6e179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ if [[ -n "${KW_EXPR}" ]] || [[ -n "${MARKER}" ]] || (( ${#TESTS[@]} )); then
fi
if [[ -n "${MARKER}" ]]; then
MESSAGES+=("with ${MARKER}")
PYTEST_ARGS+=("-m" "${KW_EXPR}")
PYTEST_ARGS+=("-m" "${MARKER}")
fi
# Check whether test paths exist
for t in "${TESTS[@]}"; do
Expand Down

0 comments on commit 6e6e179

Please sign in to comment.