Skip to content

Commit

Permalink
try shell detection debug
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Jan 13, 2025
1 parent b67caed commit 4d584be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ jobs:
- name: Run Unit Tests
shell: zsh {0}
run: |
python -c "from shellingham import detect_shell; print(detect_shell())"
poetry run python -c "from shellingham import detect_shell; print(detect_shell())"
just test-zsh || exit 1
- name: Store coverage files
Expand Down Expand Up @@ -383,7 +383,7 @@ jobs:
just pin-dependency Django~=${{ matrix.django-version }}
- name: Run Unit Tests
run: |
python -c "from shellingham import detect_shell; print(detect_shell())"
poetry run python -c "from shellingham import detect_shell; print(detect_shell())"
just test-bash || exit 1
- name: Store coverage files
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
- name: Run Tab Completion Tests
shell: fish {0}
run: |
python -c "from shellingham import detect_shell; print(detect_shell())"
poetry run python -c "from shellingham import detect_shell; print(detect_shell())"
just test-fish || exit 1
- name: Store coverage files
Expand Down

0 comments on commit 4d584be

Please sign in to comment.