summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-06-23 23:41:52 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-06-23 23:41:54 +0200
commitd71cae62cc584d439be46a2b3bb6513fdf43c0a0 (patch)
tree9b8249e166be38e156d1c26c5073bc21f90f9c90
parent633a50cf4b864419716d80a023f486c60afc6f4f (diff)
downloadyoutube-dl-d71cae62cc584d439be46a2b3bb6513fdf43c0a0.tar.gz
youtube-dl-d71cae62cc584d439be46a2b3bb6513fdf43c0a0.tar.xz
youtube-dl-d71cae62cc584d439be46a2b3bb6513fdf43c0a0.zip
allow skipping tests when releasing
(YouTube Subtitles are currently flaky in Germany, especially via IPv6)
-rwxr-xr-xdevscripts/release.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/devscripts/release.sh b/devscripts/release.sh
index b8efdab47..735e13a90 100755
--- a/devscripts/release.sh
+++ b/devscripts/release.sh
@@ -14,6 +14,10 @@
 
 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