Raise good error message in case border slices removed by EVB #891
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: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '**' | |
pull_request: | |
env: | |
NUMBA_NUM_THREADS: 1 | |
MPLBACKEND: Agg | |
PYTEST_ADDOPTS: --color=yes | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
ctapipe-version: ["0.19.3", "0.20.0"] | |
include: | |
# ctapipe 0.21 requires >= 3.10 | |
- python-version: "3.12" | |
ctapipe-version: "0.21.2" | |
defaults: | |
run: | |
shell: bash -leo pipefail {0} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set python version | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
run: | | |
sed -i -e "s/- python=.*/- python=$PYTHON_VERSION/g" environment.yml | |
- name: Create and activate env | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment.yml | |
environment-name: lstio | |
init-shell: bash | |
cache-downloads: true | |
- name: Install | |
env: | |
CTAPIPE_VERSION: ${{ matrix.ctapipe-version }} | |
run: | | |
pip install -e . | |
pip install pytest-cov "ctapipe==$CTAPIPE_VERSION" | |
ctapipe-info --version | grep "$CTAPIPE_VERSION" | |
git describe --tags | |
- name: Test Plugin | |
run: | | |
# check the LSTEventSource is available for LST | |
python eventsource_subclasses.py | grep LSTEventSource | |
- name: Download test data | |
env: | |
TEST_DATA_USER: ${{ secrets.test_data_user }} | |
TEST_DATA_PASSWORD: ${{ secrets.test_data_password }} | |
run: | | |
./download_test_data.sh | |
- name: Tests | |
run: | | |
pytest --cov=ctapipe_io_lst --cov-report=xml | |
- uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |