Skip to content

Commit

Permalink
Conda activate before testing package
Browse files Browse the repository at this point in the history
  • Loading branch information
roomrys committed Sep 5, 2024
1 parent 376cd90 commit 185796f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build_conda_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Setup Miniconda
if: env.RUN_BUILD_JOB == 'true'
uses: conda-incubator/[email protected]
uses: conda-incubator/[email protected] # TODO(LM): Upgrade
with:
miniforge-version: latest
condarc-file: ${{ matrix.condarc }}
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
ls -R build
- name: Setup Miniconda
uses: conda-incubator/[email protected].3 # TODO(LM): Upgrade
uses: conda-incubator/[email protected].4
with:
miniforge-version: latest
condarc-file: ${{ matrix.condarc }}
Expand Down Expand Up @@ -184,4 +184,6 @@ jobs:
- name: Test package
shell: bash -l {0}
run: ${{ matrix.test_args}}
run: |
conda activate sleap_test
${{ matrix.test_args}}

0 comments on commit 185796f

Please sign in to comment.