Skip to content

Commit 451ac7f

Browse files
committed
Add fail-fast: false so all analyze-project tests complete even if one fails. Add an intentional failure to test this
1 parent 74b7164 commit 451ac7f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test_actions.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ jobs:
216216
name: Test analyze-project
217217
runs-on: ${{ matrix.os }}
218218
strategy:
219+
fail-fast: false # If there are failures, sometimes it is instructive to see which combinations passed
219220
matrix:
220221
os: [windows-latest, ubuntu-latest, macos-latest]
221222
python-version: [3.9, '3.10', 3.11, 3.12, 3.13, pypy3.10, pypy3.11]
@@ -273,7 +274,7 @@ jobs:
273274
uses: ./analyze-project
274275
with:
275276
project-directory: ${{ github.workspace }}/.github/test_projects/extras-and-dependency-groups
276-
install-args: "--extras 'colors serialization' --with dev,docs,utils"
277+
install-args: "--extras colors serialization --with dev,docs,utils"
277278
- name: Check for expected dependencies
278279
run: |
279280
echo "Checking for expected packages from extras and dependency groups..."

0 commit comments

Comments
 (0)