Skip to content

Commit

Permalink
* micromamba ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
imtambovtcev committed Aug 11, 2024
1 parent 64f41e4 commit 9338e8d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci_micromamba.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@ jobs:
- name: Create or update environment with Micromamba
run: |
micromamba create -n hariplotterenv -f environment.yml --yes
micromamba activate hariplotterenv
# Install the current package in editable mode
pip install -e .
- name: Install the package in editable mode
run: |
micromamba run -n hariplotterenv pip install -e .
# Install pytest in the environment
micromamba install -n hariplotterenv pytest --yes
- name: Install pytest in the environment
run: |
micromamba run -n hariplotterenv micromamba install pytest --yes
- name: Run tests with pytest
run: |
Expand Down

0 comments on commit 9338e8d

Please sign in to comment.