-
Notifications
You must be signed in to change notification settings - Fork 72
/
conftest.py
34 lines (25 loc) · 1.21 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import dask
import pytest
pytest_plugins = ["tests.integration.fixtures"]
def pytest_addoption(parser):
parser.addoption("--rungpu", action="store_true", help="run tests meant for GPU")
parser.addoption("--runqueries", action="store_true", help="run test queries")
parser.addoption("--data_dir", help="specify file path to the data")
parser.addoption("--queries_dir", help="specify file path to the queries")
def pytest_runtest_setup(item):
# TODO: get pyarrow strings and p2p shuffle working
dask.config.set({"dataframe.convert-string": False})
dask.config.set({"dataframe.shuffle.method": "tasks"})
if "gpu" in item.keywords:
if not item.config.getoption("--rungpu"):
pytest.skip("need --rungpu option to run")
# manually enable cudf decimal support
dask.config.set({"sql.mappings.decimal_support": "cudf"})
if "queries" in item.keywords and not item.config.getoption("--runqueries"):
pytest.skip("need --runqueries option to run")
@pytest.fixture(scope="session")
def data_dir(request):
return request.config.getoption("--data_dir")
@pytest.fixture(scope="session")
def queries_dir(request):
return request.config.getoption("--queries_dir")