Skip to content

Commit

Permalink
CI: Fix tests for Python 2.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Nov 2, 2023
1 parent 652a2fa commit 98f6b37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7,3.9]
python: [2.7, 3.9, 3.11]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: MatteoH2O1999/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
Expand All @@ -29,4 +29,4 @@ jobs:
run: |
python -m pip install coveralls
coveralls --service=github
if: ${{ matrix.python == '3.9' }}
if: ${{ matrix.python == '2.7' }}
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,39},qa
envlist = py,qa
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 98f6b37

Please sign in to comment.