Skip to content

Commit 59ff417

Browse files
committed
ci: temporarily skip drive snippet tests
1 parent 9bc83ac commit 59ff417

3 files changed

+4
-11
lines changed

samples/query_external_sheets_permanent_table.py

-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import pytest
1615

17-
18-
@pytest.mark.skip(reason="temporary until drive ADC auth is fixed")
1916
def query_external_sheets_permanent_table(dataset_id: str) -> None:
2017
# [START bigquery_query_external_sheets_perm]
2118
from google.cloud import bigquery

samples/tests/test_query_external_sheets_permanent_table.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import typing
15+
import pytest
1616

1717
from .. import query_external_sheets_permanent_table
1818

19-
if typing.TYPE_CHECKING:
20-
import pytest
21-
2219

20+
@pytest.mark.skip(reason="temporary until drive ADC auth is fixed")
2321
def test_query_external_sheets_permanent_table(
2422
capsys: "pytest.CaptureFixture[str]", dataset_id: str
2523
) -> None:

samples/tests/test_query_external_sheets_temporary_table.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import typing
15+
import pytest
1616

1717
from .. import query_external_sheets_temporary_table
1818

19-
if typing.TYPE_CHECKING:
20-
import pytest
21-
2219

20+
@pytest.mark.skip(reason="temporary until drive ADC auth is fixed")
2321
def test_query_external_sheets_temporary_table(
2422
capsys: "pytest.CaptureFixture[str]",
2523
) -> None:

0 commit comments

Comments
 (0)