Skip to content

Commit

Permalink
Install tox system-wide
Browse files Browse the repository at this point in the history
  • Loading branch information
rrthomas committed May 17, 2024
1 parent dfcb1ad commit 15a9d17
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
- uses: actions/checkout@v4
- name: Install dependencies (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get -y install python3 help2man imagemagick
run: sudo apt-get -y install python3 help2man imagemagick tox
- name: Install dependencies (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install libpaper imagemagick
brew install libpaper imagemagick tox
# Prepend optional brew binary directories to PATH
echo "$(brew --prefix)/opt/imagemagick/bin:$(brew --prefix)/opt/python/libexec/bin" >> $GITHUB_PATH
- name: Install libpaper from source
Expand All @@ -30,6 +30,5 @@ jobs:
run: |
if [ "$RUNNER_OS" = "macOS" ]; then
export MAGICK_HOME="$(brew --prefix)/opt/imagemagick/"
fi
pip install tox
fi;
tox --skip-missing-interpreters

0 comments on commit 15a9d17

Please sign in to comment.