From 84124b590f62c089503b5ab44a9608a83a151ac4 Mon Sep 17 00:00:00 2001 From: sandeepd-nv Date: Wed, 4 Dec 2024 09:49:20 +0530 Subject: [PATCH] Run cuda_core tests before cuda_binding. --- continuous_integration/scripts/test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/continuous_integration/scripts/test b/continuous_integration/scripts/test index cbee6998..3a705c3c 100755 --- a/continuous_integration/scripts/test +++ b/continuous_integration/scripts/test @@ -11,10 +11,10 @@ test_ci() { cd "${CORE_ARTIFACTS_DIR}" pip install *.whl - cd "${REPO_DIR}/cuda_bindings" + cd "${REPO_DIR}/cuda_core" python -m pytest tests/ - cd "${REPO_DIR}/cuda_core" + cd "${REPO_DIR}/cuda_bindings" python -m pytest tests/ }