Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 758 Bytes

development.md

File metadata and controls

39 lines (29 loc) · 758 Bytes

Development Guide

Development

Install hatch-conda

pip install hatch-conda

Create a environment for development

hatch env create dev

Activate the environment

hatch shell dev

If you are using Windows OS, it may not work by the hatch. You can activate the environment by conda command directly The environment name will be similar to mkdocs-gen-nav-plugin_dev_3.11, you can list the conda environments first to find out the name.

conda info --envs # list all environments to find the name
conda activate mkdocs-gen-nav-plugin_dev_3.11 # activate the environment

You may need to set PYTHONPATH=src to run tests

run tests

python -m unittest

install locally

pip install -e .