From 3b4683e9abd3456b2992f402aca2ab85538c332d Mon Sep 17 00:00:00 2001 From: sandeepd-nv Date: Mon, 23 Sep 2024 18:55:56 +0530 Subject: [PATCH] Actually run the test instead of rebuilding the repo. --- continuous_integration/scripts/test | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/continuous_integration/scripts/test b/continuous_integration/scripts/test index 48f344df..e8c56c52 100755 --- a/continuous_integration/scripts/test +++ b/continuous_integration/scripts/test @@ -3,12 +3,15 @@ test_ci() { set -xeou pipefail - cd "${REPO_DIR}" + cd "${ARTIFACTS_DIR}" + + activate_conda_env; - export CUDA_HOME="${CONDA_PREFIX}/targets/x86_64-linux" - export PARALLEL_LEVEL=$(nproc --ignore 1) + pip install *.whl + + cd "${REPO_DIR}" - python setup.py bdist_wheel + python -m pytest } test_project() {