Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 342 Bytes

File metadata and controls

15 lines (8 loc) · 342 Bytes

First set up a virtual environment and install the requirements inside the venv:

pip install -r requirements.txt

To execute the unit test run:

Linux/Mac:

python -m pytest -vs src/tagging_reverse_map_builder/utils_test.py

Windows:

python -m pytest -vs src\tagging_reverse_map_builder\utils_test.py

from the project root directory.