From 7a6605a565c3aa22ebebda4984fc24681ae7c01a Mon Sep 17 00:00:00 2001 From: Matthew Rocklin Date: Thu, 26 Oct 2023 12:42:01 -0500 Subject: [PATCH] Only test certain modules Others like tpch/{spark,polars,duckdb} don't benefit from being regularly tested or like runtime, we don't care about. Originally I was going to add a `pytest.mark.skip` but then I realized that that would make it hard to explicitly run certain tests. I think that instead we want to make CI more specific about what it cares about. --- ci/scripts/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/run_tests.sh b/ci/scripts/run_tests.sh index 6fdb9b87f3..178df093b0 100644 --- a/ci/scripts/run_tests.sh +++ b/ci/scripts/run_tests.sh @@ -10,4 +10,4 @@ then EXTRA_OPTIONS="$EXTRA_OPTIONS --benchmark" fi -python -m pytest $EXTRA_OPTIONS $@ +python -m pytest $EXTRA_OPTIONS $@ tests/{benchmarks,stability,workflows,tpch/test_dask.py}