(self)
| 62 | self._test_proxy(client) |
| 63 | |
| 64 | def test_proxy_no_project(self): |
| 65 | env = EnvironmentVarGuard() |
| 66 | env.unset('KAGGLE_USER_SECRETS_TOKEN') |
| 67 | with env: |
| 68 | client = bigquery.Client() |
| 69 | self._test_proxy(client) |
| 70 | |
| 71 | def test_monkeypatching_idempotent(self): |
| 72 | env = EnvironmentVarGuard() |
nothing calls this directly
no test coverage detected