Skip to content

Commit 62cf6c9

Browse files
authored
chore: run system tests on python 3.12
1 parent 70ae928 commit 62cf6c9

1 file changed

Lines changed: 1 addition & 16 deletions

File tree

packages/sqlalchemy-bigquery/noxfile.py

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff 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
439439
def 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

0 commit comments

Comments
 (0)