Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 431 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (21 loc) · 431 Bytes

Contributing to viscy

Development installation

Clone or fork the repository, then make an editable installation with all the optional dependencies:

# in project root directory (parent folder of pyproject.toml)
pip install -e ".[dev,visual,metrics]"

CI requirements

Lint with Ruff:

ruff check viscy

Format the code with Black:

black viscy

Run tests with pytest:

pytest -v