From: Dmitry Burmistrov Date: Thu, 22 Sep 2016 13:31:27 +0000 (+0300) Subject: Remove tests stuff X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=aeba23bf895e96a3ba63693261cbf6f2e23c38bd;p=packages%2Fcentos7%2FPyYAML.git Remove tests stuff Related-Bug: #1602240 --- diff --git a/tests/runtests.sh b/tests/runtests.sh deleted file mode 100644 index 4091826..0000000 --- a/tests/runtests.sh +++ /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