Skip to content

Commit 14d0472

Browse files
committed
Test
1 parent 784f30a commit 14d0472

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/workflows/test-linux.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
PYTHON_VERSION: ['3.8', '3.7', '3.6', '2.7']
22+
PYTHON_VERSION: ['3.7', '3.6', '2.7']
2323
steps:
2424
- uses: actions/cache@v1
2525
with:
@@ -37,7 +37,13 @@ jobs:
3737
python3 -m venv /tmp/pyenv
3838
/tmp/pyenv/bin/python -m pip install loghub
3939
- run: pip install -e .[all] .[test]
40+
- name: Pylint checks
41+
if: matrix.PYTHON_VERSION == '2.7'
42+
run: pylint pyls test
43+
- name: Code style checks
44+
if: matrix.PYTHON_VERSION == '2.7'
45+
run: pycodestyle pyls test
46+
- name: Pyflakes checks
47+
if: matrix.PYTHON_VERSION == '2.7'
48+
run: pyflakes pyls test
4049
- run: py.test -v test/
41-
- run: pylint pyls test
42-
- run: pycodestyle pyls test
43-
- run: pyflakes pyls test

.github/workflows/test-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
PYTHON_VERSION: ['3.8', '3.7', '3.6', '2.7']
22+
PYTHON_VERSION: ['3.7', '3.6', '2.7']
2323
steps:
2424
- uses: actions/cache@v1
2525
with:

.github/workflows/test-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
PYTHON_VERSION: ['3.8', '3.7', '3.6', '2.7']
22+
PYTHON_VERSION: ['3.7', '3.6', '2.7']
2323
steps:
2424
- uses: actions/cache@v1
2525
with:

0 commit comments

Comments
 (0)