Skip to content

Commit 101047c

Browse files
committed
fix(gapic-generator): skip Python 3.9 unit tests temporarily
1 parent c19fc42 commit 101047c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/gapic-generator/noxfile.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
RUFF_EXCLUDES = "*golden*,*pb2.py,*pb2.pyi"
4545

4646
ALL_PYTHON = (
47+
"3.9",
4748
"3.10",
4849
"3.11",
4950
"3.12",
@@ -57,6 +58,8 @@
5758
@nox.session(python=ALL_PYTHON)
5859
def unit(session):
5960
"""Run the unit test suite."""
61+
if session.python == "3.9":
62+
session.skip("Skipping Python 3.9 unit tests temporarily.")
6063
session.install(
6164
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2478):
6265
# Temporarily pin coverage to 7.11.0

0 commit comments

Comments
 (0)