Fix definition of evb preprocessing flags, apply calibration only when needed #836
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: | |
- master | |
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"] | |
defaults: | |
run: | |
shell: bash -leo pipefail {0} | |
steps: | |
- uses: actions/checkout@v3 | |
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/provision-with-micromamba@v14 | |
with: | |
environment-name: lstio | |
environment-file: environment.yml | |
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@v1 |