Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ci/test/cudf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,24 @@ for gt in /rapids/cudf/cpp/build/gtests/*; do
fi
done

cd /rapids/cudf/python/cudf
py.test -n 6 --junitxml=${TESTRESULTS_DIR}/pytest-cudf.xml -v
cd /rapids/cudf/python/cudf/cudf/tests
pytest -n 6 --junitxml=${TESTRESULTS_DIR}/pytest-cudf.xml -v
exitcode=$?
if (( ${exitcode} != 0 )); then
SUITEERROR=${exitcode}
echo "FAILED: 1 or more python tests"
fi

cd /rapids/cudf/python/dask_cudf
py.test -n 6 --junitxml=${TESTRESULTS_DIR}/pytest-dask-cudf.xml -v
pytest -n 6 --junitxml=${TESTRESULTS_DIR}/pytest-dask-cudf.xml -v
exitcode=$?
if (( ${exitcode} != 0 )); then
SUITEERROR=${exitcode}
echo "FAILED: 1 or more python tests"
fi

cd /rapids/cudf/python/custreamz
py.test -n 6 --junitxml=${TESTRESULTS_DIR}/pytest-custreamz.xml -v
pytest -n 6 --junitxml=${TESTRESULTS_DIR}/pytest-custreamz.xml -v
exitcode=$?
if (( ${exitcode} != 0 )); then
SUITEERROR=${exitcode}
Expand Down