Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

feat: updated solvers in examples #138

feat: updated solvers in examples

feat: updated solvers in examples #138

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
run-tests:
runs-on: ubuntu-latest
services:
mongodb:
image: mongo
ports:
- 27017:27017
steps:
- name: Check out repository
uses: actions/checkout@main
with:
ref: main
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@main
with:
python-version: '3.10'
- name: Install project and dependencies
run: python -m pip install --upgrade pip && pip install smoldyn simulariumio && pip install .
- name: Install additional dependencies
run: |
pip install nbconvert pytest pytest-cov
- name: Test with pytest
run: |
pytest --cov=biosimulator_processes