(field)
| 143 | account = 'bar' |
| 144 | |
| 145 | def get_gcloud_config_value(field): |
| 146 | result = subprocess.run(['gcloud', 'config', 'get-value', field], capture_output=True) |
| 147 | result.check_returncode() |
| 148 | return result.stdout.strip().decode('ascii') |
| 149 | |
| 150 | def test_fn(): |
| 151 | client = UserSecretsClient() |
nothing calls this directly
no outgoing calls
no test coverage detected