From b2deaff50ddb0cb62de1236aba63a66f63e35361 Mon Sep 17 00:00:00 2001 From: Lucy Ge Date: Sun, 28 Apr 2024 21:14:53 -0700 Subject: [PATCH] try reorder --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 636e371..6ae8467 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,10 +83,6 @@ jobs: conda list conda --version - - name: Install dependencies - run: | - pip install .[tests] - # alluxiocommon related - name: Build alluxiocommon wheels uses: PyO3/maturin-action@v1 @@ -95,13 +91,11 @@ jobs: args: --release -i python${{ matrix.python-version }} --out dist -m rust/alluxiocommon/Cargo.toml manylinux: auto - - name: List dist contents - run: ls -l dist/ - - name: Run AlluxioCommon tests shell: bash run: | set -e + pip install .[tests] pip install alluxiocommon --no-index --find-links=dist/ --force-reinstall pip install pytest pytest -vv \