From 75a1f3472853229aa833d281999e15080cd68f6a Mon Sep 17 00:00:00 2001 From: Hendrik Makait Date: Thu, 15 Aug 2024 12:07:47 +0200 Subject: [PATCH] Test larger data but avoid non-Dask TPC-H tests --- .github/workflows/tests.yml | 6 +----- tests/tpch/conftest.py | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bff37d2d80..2b9d2c5b7b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -110,11 +110,7 @@ jobs: run: | echo PYTEST_MARKERS=" and not workflows" >> $GITHUB_ENV - - name: Disable non-Dask TPCH benchmarks on most PRs and on daily schedule (except Sundays) - if: | - matrix.name_prefix != 'tpch' || - (github.event_name != 'schedule' || github.event.schedule != '1 0 * * 0') && - (github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'tpch')) + - name: Disable non-Dask TPCH benchmarks run: | echo PYTEST_MARKERS="${{ env.PYTEST_MARKERS }} and not tpch_nondask" >> $GITHUB_ENV diff --git a/tests/tpch/conftest.py b/tests/tpch/conftest.py index a62d5f197e..ce05253af1 100644 --- a/tests/tpch/conftest.py +++ b/tests/tpch/conftest.py @@ -36,7 +36,7 @@ def pytest_addoption(parser): parser.addoption( "--scale", action="store", - default=10, + default=1000, help="Scale to run, 10, 100, 1000, or 10000", ) parser.addoption(