Skip to content

Commit

Permalink
ci: attempt fix of windows conda forge nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Jan 3, 2025
1 parent 4266da5 commit 0174999
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/CI_conda_forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 60
defaults:
run:
shell: bash -l {0}
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -47,13 +47,10 @@ jobs:
python-version: ${{ matrix.python-version }}
activate-environment: pysr-test
- name: "Install pysr with mamba"
run: conda activate pysr-test && mamba install pysr
run: mamba install pysr
if: ${{ matrix.use-mamba }}
- name: "Install pysr with conda"
run: conda activate pysr-test && conda install pysr
run: conda install pysr
if: ${{ !matrix.use-mamba }}
- name: "Run tests"
run: |
conda activate pysr-test
pip install pytest nbval
python -m pysr test main,startup
run: pip install pytest nbval && python -m pysr test main,startup

0 comments on commit 0174999

Please sign in to comment.