Skip to content

Commit 66f072f

Browse files
Enable all tests for arm jobs (#717)
This PR enables running all tests in `arm` jobs Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) - https://github.com/jakirkham Approvers: - Ray Douglass (https://github.com/raydouglass) - https://github.com/jakirkham URL: #717
1 parent 963f577 commit 66f072f

2 files changed

Lines changed: 16 additions & 41 deletions

File tree

ci/test_wheel.sh

Lines changed: 16 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,21 @@ python -m pip install $(echo ./dist/cucim*.whl)[test]
1111

1212
CUDA_MAJOR_VERSION=${RAPIDS_CUDA_VERSION:0:2}
1313

14-
# Run smoke tests for aarch64 pull requests
15-
if [[ "$(arch)" == "aarch64" && ${RAPIDS_BUILD_TYPE} == "pull-request" ]]; then
16-
python ./ci/wheel_smoke_test.py
17-
else
18-
19-
DEBIAN_FRONTEND=noninteractive apt update
20-
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends libopenslide0
14+
DEBIAN_FRONTEND=noninteractive apt update
15+
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends libopenslide0
2116

22-
if [[ ${CUDA_MAJOR_VERSION} == "11" ]]; then
23-
# Omit I/O-related tests in ./python/cucim/tests due to known CUDA bug
24-
# with dynamic loading of libcufile.
25-
python -m pytest \
26-
--junitxml="${RAPIDS_TESTS_DIR}/junit-cucim.xml" \
27-
--numprocesses=8 \
28-
--dist=worksteal \
29-
./python/cucim/src/
30-
else
31-
python -m pytest \
32-
--junitxml="${RAPIDS_TESTS_DIR}/junit-cucim.xml" \
33-
--numprocesses=8 \
34-
--dist=worksteal \
35-
./python/cucim
36-
fi
17+
if [[ ${CUDA_MAJOR_VERSION} == "11" ]]; then
18+
# Omit I/O-related tests in ./python/cucim/tests due to known CUDA bug
19+
# with dynamic loading of libcufile.
20+
python -m pytest \
21+
--junitxml="${RAPIDS_TESTS_DIR}/junit-cucim.xml" \
22+
--numprocesses=8 \
23+
--dist=worksteal \
24+
./python/cucim/src/
25+
else
26+
python -m pytest \
27+
--junitxml="${RAPIDS_TESTS_DIR}/junit-cucim.xml" \
28+
--numprocesses=8 \
29+
--dist=worksteal \
30+
./python/cucim
3731
fi

ci/wheel_smoke_test.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)