Skip to content

Commit ab90df6

Browse files
committed
Run tests on pypy3.
1 parent 422bc1a commit ab90df6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Set up Python
3939
uses: actions/setup-python@v4
4040
with:
41-
python-version: ${{env.PYTHON_LATEST}}
41+
python-version: ${{ env.PYTHON_LATEST }}
4242
- name: Set up nox
4343
uses: wntrblm/[email protected]
4444
- name: Run nox
@@ -64,7 +64,6 @@ jobs:
6464
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
6565
uses: pypa/gh-action-pypi-publish@release/v1
6666
with:
67-
user: __token__
6867
password: ${{ secrets.pypi_password }}
6968
- name: Create a Release
7069
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _session(fn):
2020
return _session
2121

2222

23-
@session(python=["3.8", "3.9", "3.10", "3.11"])
23+
@session(python=["3.8", "3.9", "3.10", "3.11", "pypy3"])
2424
def tests(session):
2525
session.install("pytest", str(ROOT))
2626
session.run("pytest")

0 commit comments

Comments
 (0)