File tree Expand file tree Collapse file tree
packages/sqlalchemy-bigquery Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -433,26 +433,11 @@ def _run_system_test_logic(session, test_type):
433433 )
434434
435435
436- @nox .session (python = SYSTEM_TEST_PYTHON_VERSIONS )
436+ @nox .session (python = "3.12" )
437437@nox .parametrize ("test_type" , ["system" , "system_noextras" , "compliance" ])
438438@_calculate_duration
439439def system (session , test_type ):
440440 """Run the system test suite."""
441- if test_type == "compliance" :
442- if session .python != DEFAULT_PYTHON_VERSION :
443- session .skip (
444- f"Compliance tests only run on latest Python: { DEFAULT_PYTHON_VERSION } "
445- )
446- elif test_type == "system_noextras" :
447- if session .python not in (
448- SYSTEM_TEST_PYTHON_VERSIONS [0 ],
449- SYSTEM_TEST_PYTHON_VERSIONS [- 1 ],
450- ):
451- session .skip (
452- f"system_noextras only runs on oldest ({ SYSTEM_TEST_PYTHON_VERSIONS [0 ]} ) "
453- f"and newest ({ SYSTEM_TEST_PYTHON_VERSIONS [- 1 ]} ) supported Python versions"
454- )
455-
456441 _run_system_test_logic (session , test_type )
457442
458443
You can’t perform that action at this time.
0 commit comments