Skip to content

Commit cb63bef

Browse files
committed
disable extralong test for bigquery due to slow speed
1 parent 0041e99 commit cb63bef

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ jobs:
262262
uses: ./.github/actions/pytest
263263
with:
264264
backend: bigquery
265-
args: -n auto tests/integration
265+
args: -n 16 -v tests/integration
266266

267267
impala-column:
268268
if: ${{ contains(github.event.pull_request.labels.*.name, 'impala') || contains(github.event.pull_request.labels.*.name, 'ready') || github.ref == 'refs/heads/main' }}

tests/integration/conftest.py

+4
Original file line numberDiff line numberDiff line change
@@ -722,6 +722,10 @@ def unique_table_extralong(engine, metadata):
722722
pytest.skip(
723723
"Skipping this larger output check for impala due to it being quite brittle"
724724
)
725+
if is_bigquery(engine):
726+
pytest.skip(
727+
"Skipping this larger output check for bigquery since creating the table is very slow"
728+
)
725729
table_name = "unique_table_extralong"
726730
columns = [
727731
sa.Column("col_int", sa.Integer()),

0 commit comments

Comments
 (0)