Remove tests stuff 10.0/newton master
authorDmitry Burmistrov <dburmistrov@mirantis.com>
Thu, 22 Sep 2016 13:31:27 +0000 (16:31 +0300)
committerDmitry Burmistrov <dburmistrov@mirantis.com>
Thu, 22 Sep 2016 13:31:27 +0000 (16:31 +0300)
Related-Bug: #1602240

tests/runtests.sh [deleted file]

diff --git a/tests/runtests.sh b/tests/runtests.sh
deleted file mode 100644 (file)
index 4091826..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /bin/bash
-
-set -o xtrace
-
-case $1 in
-    PyYAML)
-        echo "Testing $1"
-        python -c "import yaml"
-        EC=$?
-        ;;
-    python3-PyYAML)
-        echo "Testing $1"
-        python3 -c "import yaml"
-        EC=$?
-        ;;
-    PyYAML-debuginfo)
-        echo "Skip tests for $1"
-        EC=0
-        ;;
-    *)
-        echo "Test not defined for $1"
-        EC=1
-        ;;
-esac
-
-exit $EC