Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Commit e1efa83

Browse files
committed
run pre-release test against all python versions
1 parent 7fbce0d commit e1efa83

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

.github/workflows/unittest.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
option: ["", "_grpc_gcp", "_wo_grpc", "_prerelease"]
14+
option: ["", "_grpc_gcp", "_wo_grpc", "_with_prerelease_deps"]
1515
python:
1616
- "3.7"
1717
- "3.8"
@@ -26,16 +26,6 @@ jobs:
2626
python: 3.8
2727
- option: "_wo_grpc"
2828
python: 3.9
29-
- option: "_prerelease"
30-
python: 3.7
31-
- option: "_prerelease"
32-
python: 3.8
33-
- option: "_prerelease"
34-
python: 3.9
35-
- option: "_prerelease"
36-
python: 3.10
37-
- option: "_prerelease"
38-
python: 3.11
3929
steps:
4030
- name: Checkout
4131
uses: actions/checkout@v4

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ def unit(session):
195195
default(session)
196196

197197

198-
@nox.session(python=PYTHON_VERSIONS[-1])
199-
def unit_prerelease(session):
198+
@nox.session(python=PYTHON_VERSIONS)
199+
def unit_with_prerelease_deps(session):
200200
"""Run the unit test suite."""
201201
default(session, prerelease=True)
202202

0 commit comments

Comments
 (0)