We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7545d6 commit d0610bfCopy full SHA for d0610bf
1 file changed
packages/bigframes/noxfile.py
@@ -360,12 +360,14 @@ def run_system(
360
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)
361
def system(session: nox.sessions.Session):
362
"""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
- )
+ # TODO(https://github.com/googleapis/google-cloud-python/issues/16489): Restore system test once this bug is fixed
+ # run_system(
+ # session=session,
+ # prefix_name="system",
+ # test_folder=os.path.join("tests", "system", "small"),
+ # check_cov=True,
369
+ # )
370
+ session.skip("Temporarily skip system test")
371
372
373
@nox.session(python=DEFAULT_PYTHON_VERSION)
0 commit comments