Skip to content

feat: Dask get_fccd_images #31

feat: Dask get_fccd_images

feat: Dask get_fccd_images #31

Workflow file for this run

name: Unit Tests
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
shell: bash -l {0}
run: |
set -vxeuo pipefail
pip install --upgrade pip setuptools wheel numpy
pip install -r requirements-dev.txt
pip install -r requirements-extras.txt
pip install -e .
pip list
- name: Test with pytest
shell: bash -l {0}
run: |
set -vxeuo pipefail
coverage run --source=csxtools run_tests.py
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
file: ./coverage.xml
flags: unittests