Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 471 Bytes

run_tests.md

File metadata and controls

38 lines (25 loc) · 471 Bytes

Running tests

Environment

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

Tests

To run all the tests locally, you can run:

python -m unittest -v

or via pytest:

pytest -v