Skip to content

Commit

Permalink
Fix actions?
Browse files Browse the repository at this point in the history
  • Loading branch information
janosg committed Oct 1, 2024
1 parent 07f8c52 commit 0f901fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: run pytest
shell: bash -l {0}
run: |
micromamba activate optimagic
mamba activate optimagic
pytest --cov-report=xml --cov=./
- name: Upload coverage report.
if: runner.os == 'Linux' && matrix.python-version == '3.10'
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: run pytest
shell: bash -l {0}
run: |
micromamba activate optimagic
mamba activate optimagic
pytest -m "not slow and not jax"
run-tests-with-old-pandas:
# This job is only for testing if optimagic works with older pandas versions, as
Expand All @@ -94,7 +94,7 @@ jobs:
- name: run pytest
shell: bash -l {0}
run: |
micromamba activate optimagic
mamba activate optimagic
pytest -m "not slow and not jax"
code-in-docs:
name: Run code snippets in documentation
Expand All @@ -112,7 +112,7 @@ jobs:
- name: run sphinx
shell: bash -l {0}
run: |-
micromamba activate optimagic
mamba activate optimagic
cd docs/source
python -m doctest -v how_to/how_to_constraints.md
run-mypy:
Expand All @@ -133,5 +133,5 @@ jobs:
- name: Run mypy
shell: bash -l {0}
run: |-
micromamba activate optimagic
mamba activate optimagic
mypy

0 comments on commit 0f901fd

Please sign in to comment.