From b2904eb52f85938a18f55520ce2b4cf4dcb0269f Mon Sep 17 00:00:00 2001 From: WuKong Date: Sun, 24 Dec 2017 13:09:46 +0100 Subject: moon doc cleanup Change-Id: Iccc0858e305d724fd8c3341e27f9fa90ffeb916f Signed-off-by: WuKong --- templates/moon_pythonunittest/run_tests.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/moon_pythonunittest/run_tests.sh (limited to 'templates/moon_pythonunittest/run_tests.sh') diff --git a/templates/moon_pythonunittest/run_tests.sh b/templates/moon_pythonunittest/run_tests.sh new file mode 100644 index 00000000..6c586f87 --- /dev/null +++ b/templates/moon_pythonunittest/run_tests.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +cd /data +pip3 install -r tests/unit_python/requirements.txt --upgrade +pip3 install . + +if [ -f /data/tests/unit_python/run_tests.sh ]; +then + bash /data/tests/unit_python/run_tests.sh; +fi + +cd /data/tests/unit_python +pytest . -- cgit 1.2.3-korg