Skip to content

Commit

Permalink
Merge pull request #122 from pimoroni/patch-bitrot
Browse files Browse the repository at this point in the history
CI: Fix outdated Python versions and broken tests.
  • Loading branch information
Gadgetoid authored Jul 25, 2023
2 parents c8eb2c1 + 81f6d6e commit 9fa03de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.9]
python: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand All @@ -33,5 +33,5 @@ jobs:
run: |
python -m pip install coveralls
coveralls --service=github
if: ${{ matrix.python == '3.9' }}
if: ${{ matrix.python == '3.11' }}

4 changes: 2 additions & 2 deletions library/tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tox]
envlist = py{36, 37, 38, 39},qa
envlist = py,qa
skip_missing_interpreters = True

[testenv]
commands =
python setup.py install
coverage run -m py.test -v -r wsx
coverage run -m pytest -v -r wsx
coverage report
deps =
mock
Expand Down

0 comments on commit 9fa03de

Please sign in to comment.