majuna/scripts/quicktest.sh

10 lines
67 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
2023-03-30 14:11:09 +01:00
pytest tests
2022-05-17 08:25:49 +01:00