summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f653fb6..c563631 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: [3.5, 3.6, 3.7, 3.8]
+ python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
@@ -21,7 +21,6 @@ jobs:
python -m pip install --upgrade pip
pip install black pytest
- name: Check formatting with black
- if: matrix.python-version != 3.5
run: |
black --check .
- name: Test with pytest