-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixup Graphviz install on OSX (#380)
* Fixup Graphviz install on OSX * Brew install [email protected] for pango * Fix flaky OSX test
- Loading branch information
1 parent
57c4174
commit 5c63c7f
Showing
2 changed files
with
18 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -189,17 +189,13 @@ jobs: | |
if [ "$RUNNER_OS" == "Linux" ]; then | ||
export DEBIAN_FRONTEND=noninteractive | ||
sudo apt-get update --yes | ||
sudo apt-get install --yes \ | ||
espeak \ | ||
graphviz \ | ||
lame | ||
sudo apt-get install --yes espeak graphviz lame | ||
elif [ "$RUNNER_OS" == "macOS" ]; then | ||
brew install \ | ||
graphviz | ||
brew update | ||
brew install [email protected] || true | ||
brew install graphviz | ||
elif [ "$RUNNER_OS" == "Windows" ]; then | ||
choco install \ | ||
graphviz \ | ||
lame | ||
choco install graphviz lame | ||
fi | ||
- name: Run Pytest | ||
run: pytest --cov supriya --showlocals | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters