Skip to content

Commit 2e35156

Browse files
committed
enabled pypy3 in the tests again
1 parent 9972243 commit 2e35156

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
timeout-minutes: 4
1212
strategy:
1313
matrix:
14-
python-version: ['3.9', '3.10', '3.11', '3.12'] # Maybe soon?, '3.13']
14+
python-version: ['pypy3', '3.9', '3.10', '3.11', '3.12'] # Maybe soon?, '3.13']
1515

1616
steps:
1717
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pythonVersion = '3.9'
1414
[tool.mypy]
1515
strict = true
1616
check_untyped_defs = true
17+
files = ['python_utils', '_python_utils_tests', 'setup.py']
1718

1819
[[tool.mypy.overrides]]
1920
module = '_python_utils_tests.*'

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = ruff, black, py39, py310, py311, py312, py313, docs, mypy, pyright
2+
envlist = ruff, black, pypy3, py39, py310, py311, py312, py313, docs, mypy, pyright
33
skip_missing_interpreters = True
44

55
[testenv]
@@ -9,6 +9,7 @@ basepython =
99
py311: python3.11
1010
py312: python3.12
1111
py313: python3.13
12+
pypy3: pypy3
1213

1314
setenv = PY_IGNORE_IMPORTMISMATCH=1
1415
deps =

0 commit comments

Comments
 (0)