[release.sh] Do not run tests by default
authorPhilipp Hagemeister <phihag@phihag.de>
Sat, 22 Feb 2014 14:06:07 +0000 (15:06 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sat, 22 Feb 2014 14:06:07 +0000 (15:06 +0100)
We are at the point that testing takes waay too long for a release cycle, and fails way too often.
Tests through travis are a better indicator than testing just before release.

devscripts/release.sh

index 323acf8cfa92cc7662c21fac44795790867901f4..72e708c7f79c24f06797c4de10e6334ecf6bb9ec 100755 (executable)
@@ -14,9 +14,9 @@
 
 set -e
 
-skip_tests=false
-if [ "$1" = '--skip-test' ]; then
-    skip_tests=true
+skip_tests=true
+if [ "$1" = '--run-tests' ]; then
+    skip_tests=false
     shift
 fi