Skip to content

Merge pull request #43 from LadnerLab/feat/ensemble-model #8

Merge pull request #43 from LadnerLab/feat/ensemble-model

Merge pull request #43 from LadnerLab/feat/ensemble-model #8

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
test-suite:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit, integration, and e2e tests
run: pytest -m "unit or integration or e2e" --junitxml=pytest-all.xml
- name: Upload test + coverage artifacts
uses: actions/upload-artifact@v4
with:
name: test-suite-reports
path: |
pytest-all.xml
coverage.xml