From d7dab2e234b6c71f7f7d3bc2574380939e47dbf0 Mon Sep 17 00:00:00 2001 From: Iain Learmonth Date: Tue, 17 May 2022 08:25:49 +0100 Subject: [PATCH] scripts: add a quick test script --- scripts/quicktest.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 scripts/quicktest.sh diff --git a/scripts/quicktest.sh b/scripts/quicktest.sh new file mode 100755 index 0000000..ddb1df0 --- /dev/null +++ b/scripts/quicktest.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +bandit -r app +flake8 app +mypy app +nosetests tests +