Skip to content

Commit

Permalink
CI: Add asv check to CI (#115)
Browse files Browse the repository at this point in the history
* Adds a check for `asv` benchmarks
to CI just to make sure our benchmarks
are not breaking between commits.

* Adds `asv` badge to `README`

* Fixes #108
  • Loading branch information
nawtrey authored Aug 18, 2024
1 parent 0752279 commit 190f3ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ jobs:
file: coverage.xml
fail_ci_if_error: False
verbose: True

- name: asv check
run: |
python -m pip install -r ./requirements_dev.txt
python -m asv check -E existing --config ./benchmarks/asv.conf.json
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Kinetic Diagram Analysis
[![CI](https://github.com/Becksteinlab/kda/actions/workflows/test.yml/badge.svg)](https://github.com/Becksteinlab/kda/actions/workflows/test.yml)
[![codecov](https://codecov.io/gh/Becksteinlab/kda/branch/master/graph/badge.svg)](https://codecov.io/gh/Becksteinlab/kda/branch/master)
[![Documentation Status](https://readthedocs.org/projects/kda/badge/?version=latest)](https://kda.readthedocs.io/en/latest/?badge=latest)
[![asv](http://img.shields.io/badge/benchmarked%20by-asv-blue.svg?style=flat)](https://github.com/Becksteinlab/kda/actions/workflows/test.yml)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5826394.svg)](https://doi.org/10.5281/zenodo.5826394)

Python package used for the analysis of biochemical kinetic diagrams using the diagrammatic approach developed by [T.L. Hill](https://link.springer.com/book/10.1007/978-1-4612-3558-3).
Expand Down

0 comments on commit 190f3ae

Please sign in to comment.