Skip to content

Commit

Permalink
matrix variable had wrong name [gha]
Browse files Browse the repository at this point in the history
  • Loading branch information
aleneum committed Sep 18, 2023
1 parent ffa8fd3 commit b917bbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
python -m pip install -r requirements.txt
python -m pip install -U -r requirements_test.txt
- name: Install dependencies for diagrams
if: ${{ matrix.enable_graphviz == '[diagrams]' }}
if: ${{ matrix.extras == '[diagrams]' }}
run: |
sudo apt-get install libgraphviz-dev graphviz
python -m pip install -r requirements.txt -r requirements_diagrams.txt
- name: Install dependencies for mypy
if: ${{ matrix.enable_graphviz == '[mypy]' }}
if: ${{ matrix.extras == '[mypy]' }}
run: |
python -c "print 'hello'" > /dev/null 2>&1 || pip install -r requirements_mypy.txt
- name: Test with pytest
Expand Down

0 comments on commit b917bbe

Please sign in to comment.