Skip to content

Commit

Permalink
Update tests CI workflow to run the test suite against exspy release
Browse files Browse the repository at this point in the history
  • Loading branch information
ericpre committed Aug 30, 2024
1 parent 9a724c0 commit d1689dd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,16 @@ jobs:
run: |
pip install git+https://github.com/hyperspy/hyperspy.git@RELEASE_next_patch
- name: Install exSpy
if: ${{ ! contains( matrix.LABEL, 'minimum') }}
- name: Install exSpy (main)
if: ${{ ! contains( matrix.LABEL, 'minimum') && ! contains( matrix.LABEL, 'release')}}
run: |
pip install git+https://github.com/hyperspy/exspy.git
- name: Install exSpy
if: ${{ ! contains( matrix.LABEL, 'minimum') && contains( matrix.LABEL, 'release')}}
run: |
pip install exspy
- name: Install
run: |
pip install ${{ matrix.PIP_ARGS }} .'${{ env.PIP_SELECTOR }}'
Expand Down

0 comments on commit d1689dd

Please sign in to comment.