Skip to content

Commit

Permalink
Change workflows to include graphviz sometimes
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Prescod committed Nov 26, 2021
1 parent 87457ad commit 6c6e5df
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.6", "3.9"]
python-version: ["3.6", "3.10"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
Expand All @@ -117,6 +117,10 @@ jobs:
python -VV
python -m pip install --upgrade pip
make dev-install
# Snowfakery should work both with and without graphviz.
# On Linux we test without it and on Windows we test with it.
# The Unit tests adapt to both situations
choco install graphviz
- name: Run Tests
run: python -m pytest
Expand Down

0 comments on commit 6c6e5df

Please sign in to comment.