allow skipping tests when releasing
authorPhilipp Hagemeister <phihag@phihag.de>
Sun, 23 Jun 2013 21:41:52 +0000 (23:41 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Sun, 23 Jun 2013 21:41:54 +0000 (23:41 +0200)
(YouTube Subtitles are currently flaky in Germany, especially via IPv6)

devscripts/release.sh

index b8efdab4781901fb096e35dcf5cd351457e75299..735e13a904b69e948820fd560549be1ccd16b435 100755 (executable)
 
 set -e
 
+skip_test=false
+if [ "$2" == '--skip-test' ]; then
+    skip_test=true
+fi
 if [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fi
 version="$1"
 if [ ! -z "`git tag | grep "$version"`" ]; then echo 'ERROR: version already present'; exit 1; fi
@@ -22,7 +26,11 @@ if [ ! -f "updates_key.pem" ]; then echo 'ERROR: updates_key.pem missing'; exit
 
 /bin/echo -e "\n### First of all, testing..."
 make cleanall
-nosetests --verbose --with-coverage --cover-package=youtube_dl --cover-html test --stop || exit 1
+if $skip_tests; then
+    echo 'SKIPPING TESTS'
+else
+    nosetests --verbose --with-coverage --cover-package=youtube_dl --cover-html test --stop || exit 1
+fi
 
 /bin/echo -e "\n### Changing version in version.py..."
 sed -i "s/__version__ = '.*'/__version__ = '$version'/" youtube_dl/version.py