Skip to content

simplified anomaly code for Moving Average and ESD functions #149

simplified anomaly code for Moving Average and ESD functions

simplified anomaly code for Moving Average and ESD functions #149

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python Package Test Runner
on:
pull_request:
branches: [ "*" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install poetry
poetry install --with dev
- name: Run Prospector
run: |
poetry run prospector --no-autodetect --profile prospector.yaml
- name: Test with pytest coverage
run: |
poetry run coverage run -m pytest
poetry run coverage report -m