From 5f2e6730a9e04bb9f51313eb4813e2bbcfbc16a8 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Fri, 26 Oct 2012 18:05:00 +0200 Subject: [PATCH] Allow python interpreter specification for test run. --- tests/run_alexa_1m.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_alexa_1m.sh b/tests/run_alexa_1m.sh index c4d72d52..ee695e86 100755 --- a/tests/run_alexa_1m.sh +++ b/tests/run_alexa_1m.sh @@ -20,5 +20,5 @@ errfile=alexa_1m_err.log rm -f $logfile $errfile for url in $(shuf $HOME/src/alexatopsites/top-1m.txt); do echo "Checking $url" | tee -a $logfile | tee -a $errfile - ./linkchecker -r1 --no-status $DEBUG $url >> $logfile 2>>$errfile + ${PYTHON:-python} linkchecker -r1 --no-status $DEBUG $url >> $logfile 2>>$errfile done