Skip to content

Commit f3b0bb6

Browse files
update ci
1 parent 6acabfe commit f3b0bb6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test-and-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- uses: actions/setup-python@v5
2525
with:
26-
python-version: ${{ matrix.python }}
26+
python-version: ${{ matrix.py }}
2727

2828
- name: Configure GNU/Linux
2929
if: ${{ runner.os == 'Linux' }}
@@ -37,7 +37,7 @@ jobs:
3737
3838
# Only one statement per step to ensure the error codes are not ignored by PowerShell.
3939
- run: python -m pip install --upgrade attrs pip setuptools nox
40-
- run: nox --non-interactive --session test --python ${{ matrix.python }}
40+
- run: nox --non-interactive --session test --python ${{ matrix.py }}
4141
- run: nox --non-interactive --session lint
4242

4343
- uses: actions/upload-artifact@v4

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def test(session):
8282
*session.posargs,
8383
env={
8484
"PYTHONPATH": str(DEPS_DIR),
85-
"PATH": os.pathsep.join([session.env["PATH"], str(DEPS_DIR)]),
85+
"PATH": os.pathsep.join([os.environ["PATH"], str(DEPS_DIR)]),
8686
},
8787
)
8888

0 commit comments

Comments
 (0)