Skip to content

fix: fixed cumulative effect plot #69

fix: fixed cumulative effect plot

fix: fixed cumulative effect plot #69

Workflow file for this run

name: Python CI
on:
push:
branches: [ "dev", "main" ]
pull_request:
branches: [ "dev" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10","3.11","3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov
pip install -e .
- name: Run tests with pytest
run: |
pytest --cov=./ --cov-report=xml --cov-report=term-missing