Skip to content

Commit

Permalink
Remove pre-installed argcomplete on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
evanunderscore committed Nov 26, 2023
1 parent 906a964 commit a0dc5e3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
run: |
[[ $(uname) == Linux ]] && sudo apt-get install --yes rpm tcsh fish zsh
[[ $(uname) == Darwin ]] && brew install bash tcsh fish
# Some runners have python-argcomplete preinstalled
# as a dependency of pipx, which interferes with the tests.
[[ $(uname) == Darwin ]] && brew uninstall --ignore-dependencies python-argcomplete || true
python -m pip install --quiet --upgrade codecov
- run: make install
- run: make lint
Expand Down

0 comments on commit a0dc5e3

Please sign in to comment.