From 7767fa5a70413c888957299b5790474d3c155c66 Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Mon, 15 Jan 2018 14:59:53 +0100 Subject: [PATCH] addition: added forgotten testall.sh script, which can be used rapidly test MISP-Dashboard --- tests/testall.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 tests/testall.sh diff --git a/tests/testall.sh b/tests/testall.sh new file mode 100755 index 0000000..2779766 --- /dev/null +++ b/tests/testall.sh @@ -0,0 +1,11 @@ +#!/bin/bash +set -e +[ -z "$DASH_HOME" ] && echo "Needs the env var DASHENV. Run the script from the virtual environment." && exit 1; + +./start_framework.sh +# Wait a bit that redis terminate +sleep 1 +python test_geo.py +python test_users.py +python test_trendings.py +./terminate_framework.sh