Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions ci/run_single_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,7 @@ case ${TEST_TYPE} in
;;
unit)
case ${PY_VERSION} in
"3.9")
nox -s unit-3.9
retval=$?
;;

Comment thread
chalmerlowe marked this conversation as resolved.
Outdated
Comment thread
chalmerlowe marked this conversation as resolved.
Outdated
"3.10")
nox -s unit-3.10
retval=$?
Expand Down
4 changes: 1 addition & 3 deletions packages/gapic-generator/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
RUFF_EXCLUDES = "*golden*,*pb2.py,*pb2.pyi"

ALL_PYTHON = (
"3.9",
"3.10",
"3.11",
"3.12",
Expand All @@ -58,8 +57,7 @@
@nox.session(python=ALL_PYTHON)
def unit(session):
"""Run the unit test suite."""
if session.python == "3.9":
session.skip("Skipping Python 3.9 unit tests temporarily.")

session.install(
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2478):
# Temporarily pin coverage to 7.11.0
Expand Down
Loading