diff --git a/ci/test_python_dask.sh b/ci/test_python_dask.sh index c7cd7ea61c..d32526ef94 100755 --- a/ci/test_python_dask.sh +++ b/ci/test_python_dask.sh @@ -5,11 +5,12 @@ source "$(dirname "$0")/test_python_common.sh" rapids-logger "pytest cuml-dask" +cd python/cuml/tests/dask pytest \ --cache-clear \ --junitxml="${RAPIDS_TESTS_DIR}/junit-cuml-dask.xml" \ - --cov-config=python/.coveragerc \ + --cov-config=../../../.coveragerc \ --cov=cuml_dask \ --cov-report=xml:"${RAPIDS_COVERAGE_DIR}/cuml-dask-coverage.xml" \ --cov-report=term \ - python/cuml/tests/dask + . diff --git a/ci/test_python_singlegpu.sh b/ci/test_python_singlegpu.sh index c65d4774a5..426cd650a9 100755 --- a/ci/test_python_singlegpu.sh +++ b/ci/test_python_singlegpu.sh @@ -5,13 +5,14 @@ source "$(dirname "$0")/test_python_common.sh" rapids-logger "pytest cuml single GPU" +cd python/cuml/tests pytest \ --numprocesses=8 \ - --ignore=python/cuml/tests/dask \ + --ignore=dask \ --cache-clear \ --junitxml="${RAPIDS_TESTS_DIR}/junit-cuml.xml" \ - --cov-config=python/.coveragerc \ + --cov-config=../../.coveragerc \ --cov=cuml \ --cov-report=xml:"${RAPIDS_COVERAGE_DIR}/cuml-coverage.xml" \ --cov-report=term \ - python/cuml/tests + .