Skip to content

Commit d0610bf

Browse files
committed
tests: temporarily skip system test to unblock code migration as per offline discussion
1 parent c7545d6 commit d0610bf

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

packages/bigframes/noxfile.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -360,12 +360,14 @@ def run_system(
360360
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)
361361
def system(session: nox.sessions.Session):
362362
"""Run the system test suite."""
363-
run_system(
364-
session=session,
365-
prefix_name="system",
366-
test_folder=os.path.join("tests", "system", "small"),
367-
check_cov=True,
368-
)
363+
# TODO(https://github.com/googleapis/google-cloud-python/issues/16489): Restore system test once this bug is fixed
364+
# run_system(
365+
# session=session,
366+
# prefix_name="system",
367+
# test_folder=os.path.join("tests", "system", "small"),
368+
# check_cov=True,
369+
# )
370+
session.skip("Temporarily skip system test")
369371

370372

371373
@nox.session(python=DEFAULT_PYTHON_VERSION)

0 commit comments

Comments
 (0)