Skip to content

Commit 9ddca5e

Browse files
authored
test(bigtable): temporarily disable real-service system tests, keep emulated (#18148)
## Summary Temporarily disables the `system_default` (real Cloud Bigtable service) system-test parametrization for `google-cloud-bigtable`, leaving `system_emulated` running. The `system` nox session previously ran both `system_default` and `system_emulated`. This drops `system_default` from the parametrize list so only the emulator-backed system tests run. A `TODO` is left in `noxfile.py` to re-enable `system_default` once the real-service system tests are green again. The `system_default` function itself is left intact (still referenced from `test_map`), so re-enabling is a one-line revert. ## Change ```diff @nox.parametrize( "test_type", - ["system_default", "system_emulated"], + # TODO: Re-enable "system_default" once the real-service system tests are + # green again. Only the emulated system tests run for now. + ["system_emulated"], ) ``` See follow up issue #18162
1 parent fac536e commit 9ddca5e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/google-cloud-bigtable/noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,9 @@ def system_emulated(session):
325325
@nox.session(py="3.12")
326326
@nox.parametrize(
327327
"test_type",
328-
["system_default", "system_emulated"],
328+
# TODO: Re-enable "system_default" once the real-service system tests are
329+
# green again. Only the emulated system tests run for now.
330+
["system_emulated"],
329331
)
330332
def system(session, test_type):
331333
"""Run the system/emulator tests."""

0 commit comments

Comments
 (0)