Skip to content

Commit

Permalink
Use python -m in wheel tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham authored Feb 15, 2024
1 parent 03c4f97 commit 86ffadc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/test_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RAPIDS_PY_WHEEL_NAME="pynvjitlink_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download-whee
PACKAGE_CUDA_SUFFIX="-${RAPIDS_PY_CUDA_SUFFIX}"

rapids-logger "Install wheel"
pip install --find-links ./dist pynvjitlink${PACKAGE_CUDA_SUFFIX}
python -m pip install --find-links ./dist pynvjitlink${PACKAGE_CUDA_SUFFIX}

rapids-logger "Build Tests"
pushd test_binary_generation
Expand All @@ -26,5 +26,5 @@ rapids-logger "Show Numba CUDA library configuration"
python -c "from numba.cuda.cudadrv.libs import test; test()"

rapids-logger "Run Tests"
pip install pytest
pytest pynvjitlink/tests
python -m pip install pytest
python -m pytest pynvjitlink/tests

0 comments on commit 86ffadc

Please sign in to comment.