From 4ae3855b59654bddd7b84f50aa4ccc1b1525f015 Mon Sep 17 00:00:00 2001 From: MilesCranmer Date: Fri, 3 Jan 2025 13:36:16 +0000 Subject: [PATCH] ci: attempt fix of windows conda forge nightly --- .github/workflows/CI_conda_forge.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI_conda_forge.yml b/.github/workflows/CI_conda_forge.yml index 09dbde6b..85f52cf1 100644 --- a/.github/workflows/CI_conda_forge.yml +++ b/.github/workflows/CI_conda_forge.yml @@ -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."