From bf8d5c4e3d027e7f0d14054f76dfcdbf5b0e4b7d Mon Sep 17 00:00:00 2001 From: Changho Hwang Date: Sat, 7 Oct 2023 18:26:57 +0800 Subject: [PATCH] fix --- .github/workflows/ut-backup.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ut-backup.yml b/.github/workflows/ut-backup.yml index bebbb0102..9a1487f9a 100644 --- a/.github/workflows/ut-backup.yml +++ b/.github/workflows/ut-backup.yml @@ -58,9 +58,9 @@ jobs: export PATH=/usr/local/mpi/bin:$PATH cd build && make pylib-copy if [[ '${{ matrix.container-image }}' == *'cuda11'* ]]; then - pip3 install -r ../python/test/requirements_cu11.txt + python3 -m pip install -r ../python/test/requirements_cu11.txt else - pip3 install -r ../python/test/requirements_cu12.txt + python3 -m pip install -r ../python/test/requirements_cu12.txt fi - mpirun --allow-run-as-root -tag-output -np 8 ~/.local/bin/pytest ../python/test/test_mscclpp.py -x + mpirun --allow-run-as-root -tag-output -np 8 $(which pytest) ../python/test/test_mscclpp.py -x working-directory: ${{ github.workspace }}