Skip to content

Commit

Permalink
Attempt to rectify workflow syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Sep 30, 2021
1 parent 4456df2 commit 8a6be5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
# exit-zero treats all errors as warnings. PEP-8 says 99 chars is a good width
flake8 pe --count --exit-zero --max-complexity=10 --max-line-length=99 --statistics
- name: Test with pytest including doctests
if: matrix.python-version == "3.9"
if: ${{ matrix.python-version == '3.9' }}
run: |
pip install pytest
pytest --doctest-glob=\*.md
- name: Test with pytest
if: matrix.python-version != "3.9"
if: ${{ matrix.python-version != '3.9' }}
run: |
pip install pytest
pytest
Expand Down

0 comments on commit 8a6be5a

Please sign in to comment.