Based on Pytest Good Integration Practices.
Steps to run
- Optionally create virtual env
python3 -m venv env
and activate./env/bin/activate
- For first run, install Pytest and current package in editable mode
python3 -m pip install pytest
andpython3 -m pip install -e .
- Run tests
python3 -m pytest
- Exit venv
deactivate