Skip to content

Commit

Permalink
run pre-release test against all python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Jun 11, 2024
1 parent 7fbce0d commit e1efa83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
option: ["", "_grpc_gcp", "_wo_grpc", "_prerelease"]
option: ["", "_grpc_gcp", "_wo_grpc", "_with_prerelease_deps"]
python:
- "3.7"
- "3.8"
Expand All @@ -26,16 +26,6 @@ jobs:
python: 3.8
- option: "_wo_grpc"
python: 3.9
- option: "_prerelease"
python: 3.7
- option: "_prerelease"
python: 3.8
- option: "_prerelease"
python: 3.9
- option: "_prerelease"
python: 3.10
- option: "_prerelease"
python: 3.11
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ def unit(session):
default(session)


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

Expand Down

0 comments on commit e1efa83

Please sign in to comment.