Skip to content

Commit 8a0da37

Browse files
committed
Skip unit tests when building for Python 3.6 in GitHub Actions
1 parent 28f534d commit 8a0da37

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
run: python setup.py build_ext --inplace --debug
5050
- name: Test Rust extension
5151
run: python -m unittest discover -vv
52+
if: ${{ matrix.python-release != 'v3.6' }}
5253

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

9799
coverage:
98100
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)