Skip to content

Commit 865f93b

Browse files
committed
add 3.9 compliance tests
1 parent 790f257 commit 865f93b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/unittest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
strategy:
6464
matrix:
65-
python: ['3.12']
65+
python: ['3.9', '3.10', '3.11', '3.12']
6666
steps:
6767
- name: Checkout
6868
uses: actions/checkout@v4

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def prerelease(session, tests_path):
262262
)
263263

264264

265-
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS[-1])
265+
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
266266
def compliance(session):
267267
"""Run the compliance test suite."""
268268
default(session, os.path.join("tests", "compliance"))

0 commit comments

Comments
 (0)