Skip to content

Refurbish emcee sampler (#97) #195

Refurbish emcee sampler (#97)

Refurbish emcee sampler (#97) #195

Workflow file for this run

name: Run unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
deploy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest',]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[develop]
- name: Run unit tests
run: |
pytest src/tests/test_ODE.py
pytest src/tests/test_JumpProcess.py
pytest src/tests/test_calibration.py