Skip to content

Commit

Permalink
Test larger data but avoid non-Dask TPC-H tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait committed Aug 15, 2024
1 parent 74a5abb commit 75a1f34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/tpch/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 75a1f34

Please sign in to comment.