From 30823eb9c9c7f15e4c80ee1d6bf97ac3579af62e Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Mon, 7 Jun 2021 15:16:08 -0400 Subject: [PATCH] Ignore `raft` unit tests for `cugraph` This PR adds a flag to ignore the `raft` unit tests in the `cugraph` repo since those tests are meant to be run from the `raft` repo itself (and not a downstream repo). --- ci/test/cugraph.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test/cugraph.sh b/ci/test/cugraph.sh index 0473eb43..36352686 100644 --- a/ci/test/cugraph.sh +++ b/ci/test/cugraph.sh @@ -34,7 +34,7 @@ for gt in /rapids/cugraph/cpp/build/tests/*_TEST; do done # Python tests -py.test --junitxml=${TESTRESULTS_DIR}/pytest.xml -v /rapids/cugraph/python +pytest --ignore=cugraph/raft --junitxml=${TESTRESULTS_DIR}/pytest.xml -v /rapids/cugraph/python exitcode=$? if (( ${exitcode} != 0 )); then SUITEERROR=${exitcode}