- Azure CLI
- Github CLI
# Check if all dependencies are installed
python git-pr.py bootstrap
# Get more help
python git-pr.py --help
python3 -m venv env
# Enter virtualenv
source env/bin/activate
# Install prerequisites
pip install -r requirements.txt
# Run unit tests for python
python3 -m unittest git-pr.py -v
note: Also runs the tests automatically
# Run coverage scan
coverage run -m unittest git-pr.py -v
# Show report with missing lines
coverage report -m
# Check code conventions
pycodestyle git-pr.py