From 0b23d38d7ad6e5429dbb41ef390e11b13277e515 Mon Sep 17 00:00:00 2001 From: Lucy Ge Date: Sat, 27 Apr 2024 22:17:46 -0700 Subject: [PATCH] reorder to have alluxiocommon install after alluxiocommon wheel building --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5394c7..5bc610b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,6 +83,10 @@ jobs: conda list conda --version + - name: Install dependencies + run: | + pip install .[tests] + # alluxiocommon related - name: Build alluxiocommon wheels uses: PyO3/maturin-action@v1 @@ -91,15 +95,11 @@ jobs: args: --release --out dist -m rust/alluxiocommon/Cargo.toml manylinux: auto - - name: Install dependencies - run: | - pip install .[tests] - pip install alluxiocommon --find-links dist --force-reinstall - - name: Run AlluxioCommon tests shell: bash run: | set -e + pip install alluxiocommon --find-links dist --force-reinstall pip install pytest pytest -vv \ --log-format="%(asctime)s %(levelname)s %(message)s" \