From 5ea590e94e2bc61d8825e5511a39b9c9d4114823 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 15 Nov 2023 17:14:39 -0600 Subject: [PATCH] Apply suggestions from code review --- .github/workflows/pr.yaml | 2 +- ci/test_wheel.sh | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index f5d87e97..f4eadefa 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -73,7 +73,7 @@ jobs: uses: actions/download-artifact@v2 with: path: ./ - - name: run test_wheel.sh + - name: Run test_wheel.sh run: ci/test_wheel.sh wheel-test-arm64: needs: diff --git a/ci/test_wheel.sh b/ci/test_wheel.sh index 2b0e557b..1b8c530c 100755 --- a/ci/test_wheel.sh +++ b/ci/test_wheel.sh @@ -3,12 +3,11 @@ set -e -rapids-logger "Search artficact directory" +rapids-logger "Search artifact directory" ls ./artifact - rapids-logger "Install wheel" -pip install --find-links ./artifact pynvjitlink +pip install --find-links ./artifact pynvjitlink rapids-logger "Build Tests" cd test_binary_generation && make @@ -16,4 +15,4 @@ cd test_binary_generation && make rapids-logger "Run Tests" cd .. pip install pytest -py.test pynvjitlink/tests +pytest pynvjitlink/tests