Skip to content

Commit

Permalink
conda: also add -c defaults in workflow
Browse files Browse the repository at this point in the history
Not sure why I missed that in 3fd35cf.
Anyway, it seems like the change only affected `conda build`, not `conda
install` (yet).
  • Loading branch information
mara004 committed May 31, 2024
1 parent f250b34 commit 7dca75c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,14 @@ jobs:
- name: Install/Test raw package
if: inputs.package == 'raw'
run: |
conda install -y pypdfium2_${{ inputs.package }} --override-channels -c ./conda_dist/ -c bblanchon
conda install -y pypdfium2_${{ inputs.package }} --override-channels -c ./conda_dist/ -c bblanchon -c defaults
python conda/raw/minitest.py
- name: Install/Test helpers package
if: inputs.package == 'helpers'
run: |
conda install -y pytest pillow numpy
conda install -y pypdfium2_${{ inputs.package }} --override-channels -c ./conda_dist/ -c pypdfium2-team -c bblanchon
conda install -y pypdfium2_${{ inputs.package }} --override-channels -c ./conda_dist/ -c pypdfium2-team -c bblanchon -c defaults
pytest tests/ tests_old/
publish:
Expand Down

0 comments on commit 7dca75c

Please sign in to comment.