Skip to content

Commit

Permalink
BLD: conda CI uses bash .profile
Browse files Browse the repository at this point in the history
  • Loading branch information
nkeim committed May 24, 2024
1 parent 041835b commit db49992
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
channels: conda-forge

- name: Initialize conda
shell: bash
shell: bash -el {0}
run: |
conda init
- name: Install dependencies
shell: bash
shell: bash -el {0}
run: |
conda create --name test python=${{ matrix.python }} pytest numpy scipy matplotlib pandas pytables numba scikit-learn pyyaml looseversion
conda activate test
Expand All @@ -36,7 +36,7 @@ jobs:
conda list
- name: Run tests
shell: bash
shell: bash -el {0}
run: |
conda activate test
pytest trackpy

0 comments on commit db49992

Please sign in to comment.