Skip to content

Commit

Permalink
added conda path
Browse files Browse the repository at this point in the history
  • Loading branch information
kcartier-wri committed Sep 12, 2024
1 parent a39276c commit 2bc6e2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dev_ci_cd_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ jobs:
sudo apt install -y gdal-bin libgdal-dev
- name: Install Packages in environment.yml file
run: |
conda env update --file=.github/environment.yml --name base
$CONDA/bin/conda env update --file=.github/environment.yml --name base
- name: Install other packages
run: |
conda install gdal --yes
conda upgrade numpy --yes
conda install pytest --yes
$CONDA/bin/conda install gdal --yes
$CONDA/bin/conda upgrade numpy --yes
$CONDA/bin/conda install pytest --yes
- name: Run Tests
shell: bash -l {0}
env:
GOOGLE_APPLICATION_USER: ${{ secrets.GOOGLE_APPLICATION_USER }}
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
run: |
pytest tests
$CONDA/bin/pytest tests

0 comments on commit 2bc6e2d

Please sign in to comment.