Skip to content

Commit

Permalink
with -> w; apply same change to prerelease_deps
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Sep 21, 2024
1 parent a8af791 commit 9f7d36c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .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", "_with_prerelease_deps", "_with_async_rest_extra"]
option: ["", "_grpc_gcp", "_wo_grpc", "_w_prerelease_deps", "_w_async_rest_extra"]
python:
- "3.7"
- "3.8"
Expand Down
7 changes: 4 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"unit",
"unit_grpc_gcp",
"unit_wo_grpc",
"unit_with_async_rest_extra",
"unit_w_prerelease_deps",
"unit_w_async_rest_extra",
"cover",
"pytype",
"mypy",
Expand Down Expand Up @@ -221,7 +222,7 @@ def unit(session):


@nox.session(python=PYTHON_VERSIONS)
def unit_with_prerelease_deps(session):
def unit_w_prerelease_deps(session):
"""Run the unit test suite."""
default(session, prerelease=True)

Expand Down Expand Up @@ -252,7 +253,7 @@ def unit_wo_grpc(session):


@nox.session(python=PYTHON_VERSIONS)
def unit_with_async_rest_extra(session):
def unit_w_async_rest_extra(session):
"""Run the unit test suite with the `async_rest` extra"""
default(session, install_async_rest=True)

Expand Down

0 comments on commit 9f7d36c

Please sign in to comment.