Skip to content

Commit

Permalink
feat(CI) testing conditional requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Narcisi committed Oct 4, 2023
1 parent 212ec61 commit caefb46
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,15 @@ jobs:
sudo apt update
sudo apt install -y libgdal-dev
- name: Install dependencies
if: github.ref_name == 'feat/ci-branch-dependent-requirements'
run: |
python -m pip install --upgrade pip
python -m pip install \
-e ..[tests] \
-r requirements.txt
working-directory: ./backend
- name: Install dependencies
if: github.ref_name != 'feat/ci-branch-dependent-requirements'
run: |
python -m pip install --upgrade pip
python -m pip install \
Expand Down

0 comments on commit caefb46

Please sign in to comment.