From d63d55d96f8de258a9b092f9a11559b70863da4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gra=C3=B1a?= Date: Thu, 31 Jul 2014 12:27:44 -0300 Subject: [PATCH] remove obsolete shell scripts used to run tests suite --- bin/runtests.bat | 6 ------ bin/runtests.sh | 50 ------------------------------------------------ 2 files changed, 56 deletions(-) delete mode 100644 bin/runtests.bat delete mode 100755 bin/runtests.sh diff --git a/bin/runtests.bat b/bin/runtests.bat deleted file mode 100644 index 6c882fa3d..000000000 --- a/bin/runtests.bat +++ /dev/null @@ -1,6 +0,0 @@ -@ECHO off - -SET test=scrapy -SET PYTHONPATH=%CD% -IF NOT "%1" == "" SET test="%1" -trial --reporter=text %test% diff --git a/bin/runtests.sh b/bin/runtests.sh deleted file mode 100755 index 0e7a318b9..000000000 --- a/bin/runtests.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh - -# look for twisted trial command -if type trial >/dev/null 2>&1; then - trial="trial" -elif [ -x /usr/lib/twisted/bin/trial ]; then - trial="/usr/lib/twisted/bin/trial" -elif [ -x /usr/lib64/twisted/bin/trial ]; then - trial="/usr/lib64/twisted/bin/trial" -else - echo "Unable to run tests: trial command (included with Twisted) not found" - exit 1 -fi - -# use vsftpd (if available) for testing ftp feed storage -if type vsftpd >/dev/null 2>&1; then - vsftpd_conf=$(mktemp /tmp/vsftpd-XXXX) - cat >$vsftpd_conf <