(self)
| 120 | is_tpu=True) |
| 121 | |
| 122 | def test_get_gcs_path_automl_succeeds(self): |
| 123 | def call_get_gcs_path(): |
| 124 | client = KaggleDatasets() |
| 125 | gcs_path = client.get_gcs_path() |
| 126 | self.assertEqual(gcs_path, _AUTOML_GCS_BUCKET) |
| 127 | self._test_client(call_get_gcs_path, |
| 128 | '/requests/CopyDatasetVersionToKnownGcsBucketRequest', |
| 129 | {'MountSlug': None, 'IntegrationType': 1}, |
| 130 | is_tpu=False) |
| 131 | |
| 132 | def test_get_gcs_path_handles_unsuccessful(self): |
| 133 | def call_get_gcs_path(): |
nothing calls this directly
no test coverage detected