File tree Expand file tree Collapse file tree
packages/google-cloud-dns Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434
3535DEFAULT_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" ,
5757UNIT_TEST_EXTRAS : List [str ] = []
5858UNIT_TEST_EXTRAS_BY_PYTHON : Dict [str , List [str ]] = {}
5959
60- SYSTEM_TEST_PYTHON_VERSIONS : List [str ] = ["3.10" ]
6160SYSTEM_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 )
265264def system (session ):
266265 """Run the system test suite."""
267266 constraints_path = str (
You can’t perform that action at this time.
0 commit comments