Skip to content

Commit b67caed

Browse files
committed
try shell detection debug
1 parent f45558e commit b67caed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@ jobs:
332332
- name: Run Unit Tests
333333
shell: zsh {0}
334334
run: |
335+
python -c "from shellingham import detect_shell; print(detect_shell())"
335336
just test-zsh || exit 1
336337
337338
- name: Store coverage files
@@ -382,6 +383,7 @@ jobs:
382383
just pin-dependency Django~=${{ matrix.django-version }}
383384
- name: Run Unit Tests
384385
run: |
386+
python -c "from shellingham import detect_shell; print(detect_shell())"
385387
just test-bash || exit 1
386388
387389
- name: Store coverage files
@@ -440,7 +442,7 @@ jobs:
440442
- name: Run Tab Completion Tests
441443
shell: fish {0}
442444
run: |
443-
fish
445+
python -c "from shellingham import detect_shell; print(detect_shell())"
444446
just test-fish || exit 1
445447
446448
- name: Store coverage files

0 commit comments

Comments
 (0)