majuna/scripts/quicktest.sh

10 lines
77 B
Bash
Raw Normal View History

2022-05-17 08:25:49 +01:00
#!/bin/sh
set -e
bandit -r app
flake8 app
mypy app
python -m pytest tests
2022-05-17 08:25:49 +01:00