Improved IP/E-Line management of 5GTANGO LLCM.
[osm/vim-emu.git] / pipeline_local.sh
diff --git a/pipeline_local.sh b/pipeline_local.sh
new file mode 100755 (executable)
index 0000000..e6e4018
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/bash
+# helper script to be executed before committing
+set -e
+# trigger pep8 style check
+echo "Doing flake8 style check ..."
+flake8 --exclude=.eggs,devops --ignore=E501 .
+echo "done."
+# trigger the tests
+echo "Running unit tests ..."
+sudo pytest -v
+echo "done."