PyVet uses Poetry for management of dependencies and virtual environments.
Install and create a virtual environment.
poetry install
Activate the virtual environment.
poetry shell
All tests should pass.
poetry run pytest -v
To run all the tests locally, you can run:
python -m unittest -v
or via pytest:
pytest -v