Skip to content

Commit 2b7e908

Browse files
committed
clean up
1 parent 41011d0 commit 2b7e908

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

noxfile.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,6 @@
5757

5858
DEFAULT_PYTHON_VERSION = "3.14"
5959

60-
# Cloud Run Functions supports Python versions up to 3.13
61-
# https://cloud.google.com/run/docs/runtimes/python
62-
# https://cloud.google.com/functions/docs/runtime-support#python
63-
E2E_TEST_PYTHON_VERSION = "3.13"
64-
6560
UNIT_TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
6661
UNIT_TEST_STANDARD_DEPENDENCIES = [
6762
"mock",
@@ -449,7 +444,7 @@ def doctest(session: nox.sessions.Session):
449444
)
450445

451446

452-
@nox.session(python=E2E_TEST_PYTHON_VERSION)
447+
@nox.session(python=DEFAULT_PYTHON_VERSION)
453448
def e2e(session: nox.sessions.Session):
454449
"""Run the large tests in system test suite."""
455450
run_system(

0 commit comments

Comments
 (0)