Commit 9ddca5e
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
#181621 parent fac536e commit 9ddca5e
1 file changed
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
325 | 325 | | |
326 | 326 | | |
327 | 327 | | |
328 | | - | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
329 | 331 | | |
330 | 332 | | |
331 | 333 | | |
| |||
0 commit comments