Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 395 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (22 loc) · 395 Bytes

Dev installation

git clone https://github.com/gustavwilliam/bestpy

# cd into the new project directory
cd bestpy

# Install requirements
poetry install

# Activate the virtual environment
poetry shell

# install pre-commit hooks
pre-commit install

Testing

Directly in the terminal:

poetry run pytest

In the Poetry shell, through the terminal:

poetry shell
pytest