Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up workflow after hyperspy 1.7.5 release #45

Merged
merged 1 commit into from
May 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Integration tests

on:
workflow_dispatch:
workflow: "*"
schedule:
- cron: '10 0 * * *'
push:
Expand Down Expand Up @@ -114,9 +113,7 @@ jobs:
- name: Install HyperSpy release
if: contains(matrix.HYPERSPY_VERSION, 'release')
run: |
# Remove imageio pinning when hyperspy > 1.7.4 is released
# https://github.com/hyperspy/hyperspy/pull/3138
mamba install hyperspy-base imageio=2.27
mamba install hyperspy-base

- name: Install HyperSpy RnP
if: contains(matrix.HYPERSPY_VERSION, 'RnP')
Expand All @@ -131,9 +128,7 @@ jobs:
- name: Install Extension Release
if: contains(matrix.EXTENSION_VERSION, 'release')
run: |
# Remove imageio pinning when hyperspy > 1.7.4 is released
# https://github.com/hyperspy/hyperspy/pull/3138
mamba install ${{ env.EXTENSION }} imageio=2.27 vtk=*=qt*
mamba install ${{ env.EXTENSION }}

- name: Install Extension Dev
if: contains(matrix.EXTENSION_VERSION, 'dev')
Expand All @@ -153,8 +148,7 @@ jobs:

- name: Run HyperSpy Test Suite
run: |
# https://github.com/hyperspy/hyperspy/pull/3124
python -m pytest --pyargs hyperspy --reruns 3 -n 2 -k "not test_variable_sigma"
python -m pytest --pyargs hyperspy --reruns 3 -n 2

- name: Run kikuchipy Test Suite
if: ${{ always() }}
Expand Down