- Python 3.10.2
- Pylint 2.13.5
- Pickle
- Hashlib
- Hmac
- Pytest
- Pytest-cov
pip install pytest
pip install pytest-cov
Run all tests with:
pytest
Run tests for one file:
pytest tests/"filename"
Run tests with coverage:
pytest --cov src
Run tests and save coverage to html files:
pytest --cov src --cov-report=html