Skip to content

Commit 7cc41e6

Browse files
committed
skip linters on py3.5 and pypy3
1 parent 012a449 commit 7cc41e6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/main.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,14 @@ jobs:
4949
run: |
5050
pip install tox
5151
52+
- name: tox linters
53+
if: matrix.python-version != 3.5 && matrix.python-version != 'pypy3'
54+
run: tox -e py-linters
55+
5256
- name: tox
5357
env:
5458
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55-
run: tox -e py-test-twlatest,py-test-twtrunk,py-linters,publishcov,release
59+
run: tox -e py-test-twlatest,py-test-twtrunk,publishcov,release
5660

5761
- name: upload dist
5862
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)