Skip to content

Commit

Permalink
enable multiple python version execution; fix to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dlstadther committed Oct 15, 2023
1 parent 913dcbd commit 324e5fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,17 @@ jobs:

nox:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def _install_poetry(session: nox.Session) -> nox.Session:
return session


@nox.session(python=["3.9"])
@nox.session
def tests(session: nox.Session) -> None:
session = _install_poetry(session=session)
session.run("coverage", "run", "-m", "pytest", "-vv")
Expand Down

0 comments on commit 324e5fc

Please sign in to comment.