Update for BaseSignal.as_signal
changes
#353
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
run_test_site: | |
name: ${{ matrix.os }}-py${{ matrix.PYTHON_VERSION }}${{ matrix.LABEL }} | |
runs-on: ${{ matrix.os }}-latest | |
timeout-minutes: 30 | |
env: | |
MPLBACKEND: agg | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu, windows, macos] | |
PYTHON_VERSION: ['3.9', '3.11'] | |
LABEL: [''] | |
PIP_SELECTOR: ['[tests, speed]'] | |
include: | |
- os: ubuntu | |
PYTHON_VERSION: '3.8' | |
PIP_SELECTOR: '[tests, speed]' | |
- os: ubuntu | |
PYTHON_VERSION: '3.10' | |
PIP_SELECTOR: '[tests, speed]' | |
- os: ubuntu | |
PYTHON_VERSION: '3.12' | |
PIP_SELECTOR: '[tests, speed]' | |
# test minimum requirement | |
- os: ubuntu | |
PYTHON_VERSION: '3.9' | |
LABEL: '-minimum' | |
PIP_SELECTOR: '[tests]' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: get repository name | |
shell: bash | |
run: echo "REPOSITORY_NAME=${GITHUB_REPOSITORY#*/}" >> $GITHUB_ENV | |
- name: Fetch tags upstream | |
if: ${{ github.repository_owner != 'hyperspy' }} | |
# Needs to fetch the tags from upstream to get the | |
# correct version with setuptools_scm | |
run: | | |
git remote add upstream https://github.com/hyperspy/${{ env.REPOSITORY_NAME }}.git | |
git fetch upstream --tags | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: ${{ matrix.PYTHON_VERSION }} | |
- name: Display version | |
run: | | |
python --version | |
pip --version | |
- name: Install | |
run: | | |
pip install -e '.${{ matrix.PIP_SELECTOR }}' | |
- name: Install HyperSpy dev | |
run: | | |
# Remove after HyperSpy release include https://github.com/hyperspy/hyperspy/pull/3494 | |
pip install git+https://github.com/ericpre/hyperspy@fix_as_signal | |
- name: Pip list | |
run: | | |
pip list | |
- name: Run test suite | |
run: | | |
pytest --pyargs exspy -n 2 --cov=. --cov-report=xml | |
- name: Upload coverage to Codecov | |
if: ${{ always() }} | |
uses: codecov/codecov-action@v5 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |