From 3fd3a5208b45eb7ec7275df271f05b5d34a54ec7 Mon Sep 17 00:00:00 2001 From: ppinchuk Date: Sun, 28 Jul 2024 13:21:14 -0600 Subject: [PATCH] Change install order --- .github/workflows/pr_revx_tests.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr_revx_tests.yml b/.github/workflows/pr_revx_tests.yml index d5e3380e..9459c0d5 100644 --- a/.github/workflows/pr_revx_tests.yml +++ b/.github/workflows/pr_revx_tests.yml @@ -21,21 +21,20 @@ jobs: with: auto-update-conda: true python-version: 3.9 - - name: Install rex dependencies - working-directory: ./rex - shell: bash -l {0} - run: | - conda install pip pandas - pip install -e . - name: Install reVX dependencies working-directory: ./reVX shell: bash -l {0} run: | - conda install rtree pytest + conda install pip rtree pytest pip install geopandas pip install --upgrade --force-reinstall shapely~=1.8 pip install -e . pip install HOPP + - name: Install rex + working-directory: ./rex + shell: bash -l {0} + run: | + pip install -e . - name: Run reVX pytest working-directory: ./reVX shell: bash -l {0}