Skip to content

updated release script #6

updated release script

updated release script #6

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: pip install ".[cobra, copasi, smoldyn, tellurium]"
- name: Install additional dependencies
run: |
python -m pip install --upgrade pip
pip install nbconvert pytest pytest-cov
- name: Test with pytest
run: |
pytest --cov=core_processes