Skip to content

Commit

Permalink
test(tpcds): increase timeout marker for trino (#9950)
Browse files Browse the repository at this point in the history
Should fix the upstream flakiness
  • Loading branch information
cpcloud authored Aug 28, 2024
1 parent ea7d100 commit ae47736
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion ibis/backends/tests/tpc/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def inner(test: Callable[..., ir.Table]):
# func_only=True doesn't include the fixture setup time in the duration
# of the test run, which is important since backends can take a hugely
# variable amount of time to load all the TPC-$WHATEVER tables.
@pytest.mark.timeout(60, func_only=True)
@pytest.mark.timeout(90, func_only=True)
@pytest.mark.usefixtures("backend")
@pytest.mark.xdist_group(name)
@getattr(pytest.mark, name)
Expand Down
1 change: 0 additions & 1 deletion ibis/backends/tests/tpc/ds/test_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -3506,7 +3506,6 @@ def test_71(item, web_sales, date_dim, catalog_sales, store_sales, time_dim):
raises=OperationNotDefinedError,
reason="No DateDelta op defined",
)
@pytest.mark.timeout(120) # apparently trino needs extra time sometimes
@tpc_test("ds")
def test_72(
catalog_sales,
Expand Down

0 comments on commit ae47736

Please sign in to comment.