From cd555e982b9734ad6edf6bd9d01329cf6624c00e Mon Sep 17 00:00:00 2001 From: Eric Prestat Date: Mon, 5 Feb 2024 10:13:12 +0000 Subject: [PATCH] Skip pyxem test for osx-arm64 --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a920907..6358eff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -314,7 +314,7 @@ jobs: if: always() run: | conda activate "${{ env.install_dir }}" - pytest --pyargs pyxem -k "not test_pixelated_stem_class" + pytest --pyargs pyxem -k "not test_pixelated_stem_class and not test_offest_and_scale" # - shell: bash -l {0} # name: Run test kikuchipy @@ -457,7 +457,8 @@ jobs: shell: cmd run: | call "${{ env.WP_DIR_NAME }}\scripts\env.bat" - pytest --pyargs hyperspy_gui_ipywidgets -k "not test_image_contrast_tool" + # test_spikes_removal_tool fails randomly, fixed in https://github.com/hyperspy/hyperspy_gui_ipywidgets/pull/51 + pytest --pyargs hyperspy_gui_ipywidgets -k "not test_image_contrast_tool and not test_spikes_removal_tool" - name: Run test hyperspy_gui_traitsui if: always() @@ -486,7 +487,6 @@ jobs: shell: cmd run: | call "${{ env.WP_DIR_NAME }}\scripts\env.bat" - # Skip these tests until there are fixed pytest --pyargs lumispy - name: Run test pyxem @@ -494,6 +494,7 @@ jobs: shell: cmd run: | call "${{ env.WP_DIR_NAME }}\scripts\env.bat" + # Skip test_offest_and_scale for osx-arm64 pytest --pyargs pyxem -k "not test_pixelated_stem_class" # - name: Run test kikuchipy