Skip to content

Commit

Permalink
Explicitly activate conda environment
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmallasen committed Aug 16, 2024
1 parent 7ba77f1 commit 1523b27
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ jobs:
uses: conda-incubator/setup-miniconda@v3
with:
environment-file: environment.yml
activate-environment: arithmetic_units

- name: Run pytest
id: run-tests
run: pytest
run: |
conda activate arithmetic_units
pytest
continue-on-error: true

- name: Notify user on failure
Expand Down

0 comments on commit 1523b27

Please sign in to comment.