Skip to content

Commit

Permalink
Skip unit tests when building for Python 3.6 in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Aug 2, 2021
1 parent 28f534d commit 8a0da37
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
run: python setup.py build_ext --inplace --debug
- name: Test Rust extension
run: python -m unittest discover -vv
if: ${{ matrix.python-release != 'v3.6' }}

test_osx:
name: Test (OSX)
Expand Down Expand Up @@ -93,6 +94,7 @@ jobs:
run: python setup.py build_ext --inplace --debug
- name: Test Rust extension
run: python -m unittest discover -vv
if: ${{ matrix.python-release != 'v3.6' }}

coverage:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8a0da37

Please sign in to comment.