Skip to content

add filter_by_ for burst IDs and dates #28

add filter_by_ for burst IDs and dates

add filter_by_ for burst IDs and dates #28

Workflow file for this run

name: CI
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
env:
# https://github.com/pytest-dev/pytest/issues/2042#issuecomment-429289164
PY_IGNORE_IMPORTMISMATCH: 1
jobs:
pytest:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
deps:
# Note: for now we're manually adding tophu deps,
# will change once it's on conda forge
- label: Latest
spec: ""
- label: Minimum
spec: >-
python=3.8
fail-fast: false
name: ${{ matrix.os }} • ${{ matrix.deps.label }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup environment
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
environment-name: opera_utils-env
generate-run-shell: false
create-args: ${{ matrix.deps.spec }}
condarc: |
channels:
- conda-forge
- name: Install
run: |
pip install --no-deps .
- name: Install test dependencies
run: |
micromamba install -f tests/requirements.txt -c conda-forge
- name: Test
run: |
pytest -n0