Skip to content

Commit 27d46a7

Browse files
committed
tests: fix system tests
1 parent 258a97c commit 27d46a7

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

packages/google-cloud-dns/noxfile.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
DEFAULT_PYTHON_VERSION = "3.14"
3636

37-
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
37+
ALL_PYTHON: List[str] = [
3838
"3.7",
3939
"3.8",
4040
"3.9",
@@ -57,7 +57,6 @@
5757
UNIT_TEST_EXTRAS: List[str] = []
5858
UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}
5959

60-
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.10"]
6160
SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [
6261
"mock",
6362
"pytest",
@@ -190,7 +189,7 @@ def install_unittest_dependencies(session, *constraints):
190189
session.install("-e", ".", *constraints)
191190

192191

193-
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
192+
@nox.session(python=ALL_PYTHON)
194193
@nox.parametrize(
195194
"protobuf_implementation",
196195
["python", "upb", "cpp"],
@@ -261,7 +260,7 @@ def install_systemtest_dependencies(session, *constraints):
261260
session.install("-e", ".", *constraints)
262261

263262

264-
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)
263+
@nox.session(python=ALL_PYTHON)
265264
def system(session):
266265
"""Run the system test suite."""
267266
constraints_path = str(

0 commit comments

Comments
 (0)