Skip to content

Commit

Permalink
nox format
Browse files Browse the repository at this point in the history
  • Loading branch information
joelb123 committed Jan 8, 2024
1 parent 359e143 commit c2bbd08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v4

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

Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"

Expand Down
6 changes: 4 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,10 @@ def coverage(session: nox.Session) -> None:
session.run_always("pdm", "install", "-G", "coverage", external=True)

if not session.posargs and any(Path().glob(".coverage.*")):
session.run_always("pdm", "run", "coverage", "combine", external=True)
session.run_always("pdm", "run", "coverage", *args, external=True)
session.run("pdm", "run", "coverage", "combine", external=True)
session.run("pwd")
session.run("ls")
session.run("pdm", "run", "coverage", *args, external=True)


@nox.session(python=python_versions)
Expand Down

0 comments on commit c2bbd08

Please sign in to comment.