Skip to content

Commit bbb104a

Browse files
authored
Merge pull request #16 from pimoroni/patch-gh-workflow
Fix github workflow for #15
2 parents 3250fa8 + 2e7de80 commit bbb104a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python: [2.7, 3.4, 3.5, 3.7, 3.8]
14+
python: [2.7, 3.6, 3.7, 3.8]
1515

1616
steps:
1717
- uses: actions/checkout@v2
@@ -32,6 +32,6 @@ jobs:
3232
working-directory: library
3333
run: |
3434
python -m pip install coveralls
35-
coveralls
35+
coveralls --service=github
3636
if: ${{ matrix.python == '3.8' }}
3737

library/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,34,35,37},qa
2+
envlist = py{27,36,37,38},qa
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)