Skip to content

Commit c4cc9fc

Browse files
authored
Fix not fips keyword on target tests (#19816)
1 parent b0a752b commit c4cc9fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-target.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
run: |
226226
if [ '${{ inputs.pytest-args }}' = '-m flaky' ]; then
227227
set +e # Disable immediate exit
228-
ddev test --cov --junit ${{ inputs.target }} -- ${{ inputs.pytest-args }} -- '-k "not fips"'
228+
ddev test --cov --junit ${{ inputs.target }} -- ${{ inputs.pytest-args }} -k "not fips"
229229
exit_code=$?
230230
if [ $exit_code -eq 5 ]; then
231231
# Flaky test count can be zero, this is done to avoid pipeline failure

0 commit comments

Comments
 (0)