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 0174999 commit 4ae3855
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/CI_conda_forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,22 @@ jobs:
python-version: ${{ matrix.python-version }}
activate-environment: pysr-test
- name: "Install pysr with mamba"
run: mamba install pysr
run: |
echo "Installing pysr with mamba"
mamba install pysr
python -c "import pysr"
echo "Finished."
if: ${{ matrix.use-mamba }}
- name: "Install pysr with conda"
run: conda install pysr
run: |
echo "Installing pysr with conda"
conda install pysr
python -c "import pysr"
echo "Finished."
if: ${{ !matrix.use-mamba }}
- name: "Run tests"
run: pip install pytest nbval && python -m pysr test main,startup
run: |
echo "Running tests"
pip install pytest nbval
python -m pysr test main,startup
echo "Finished."

0 comments on commit 4ae3855

Please sign in to comment.