Skip to content

Commit

Permalink
remove psycopg from test workflow
Browse files Browse the repository at this point in the history
errant copying from another project, oops!
  • Loading branch information
joshuadavidthomas committed Sep 19, 2023
1 parent 5d8a069 commit 756f292
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@ env:

jobs:
test:
name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}, psycopg ${{ matrix.psycopg-version }}
name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12-dev']
django-version: ['3.2', '4.0', '4.1', '4.2', 'main']
psycopg-version: ['2', "3"]
steps:
- uses: actions/checkout@v3

Expand All @@ -37,7 +36,7 @@ jobs:
- name: Run tests
run: |
nox --session "tests-${{ matrix.python-version }}(psycopg='${{ matrix.psycopg-version }}', django='${{ matrix.django-version }}')"
nox --session "tests-${{ matrix.python-version }}(django='${{ matrix.django-version }}')"
tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 756f292

Please sign in to comment.