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 <