Skip to content

plotly/dash-bio-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notice

As of Dash Bio 1.0, the development of dash-bio-utils has been moved to the main Dash Bio repo.

This package exists for backward compatibility.

Dash Bio Utils

Dash Bio utils is a set of helper scripts that work together with the dash-bio package.

Dash

Learn more about Dash at https://plot.ly/products/dash/.

Consulting and OEM

For inquiries about Dash app development, advanced OEM integration, and more, please reach out.

Contributing

If you would like to contribute to this repository, please refer to the contributing guidelines.

Running tests

Create and activate a new virtualenv:

python3 -m venv venv
source venv/bin/activate
pip install pytest

or a conda env:

conda create -n dash-bio-utils python=3.7
source activate dash-bio-utils
conda config --add channels conda-forge
conda install pytest

Clone this repo, install the dash-bio-utils package, and run its tests:

git clone https://github.com/plotly/dash-bio-utils.git
cd dash-bio-utils/
python setup.py install
python -m pytest tests/

If you are setting breakpoints with ipdb, you want to disable capturing on the command line:

python -m pytest -s tests/