From a3e76e1cfd5e19b4deb1a027886391d8ff133592 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.anjos@idiap.ch>
Date: Thu, 22 Dec 2016 15:27:49 +0100
Subject: [PATCH] Fix build script check

---
 build.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/build.sh b/build.sh
index d64e8f9..8a1355f 100755
--- a/build.sh
+++ b/build.sh
@@ -2,7 +2,7 @@
 # Andre Anjos <andre.anjos@idiap.ch>
 # Thu 22 Dec 2016 09:31:34 CET
 
-if [ $# -lt 2 || $# -gt 4 ]; then
+if [ $# -lt 2 -o $# -gt 4 ]; then
   echo "Runs the nightly builds by setting environment variables and"
   echo "proceeding in the order establish in the provided text file"
   echo "usage: $0 <order.txt> <python-version> [<conda-root> [<env-name>]]"
@@ -121,8 +121,8 @@ for f in `cat $1`; do
   # Runs the whole shebang
   run_cmd ./_ci/before_build.sh
   run_cmd ./_ci/build.sh
-  #run_cmd ./_ci/before_test.sh
-  #run_cmd ./_ci/test.sh
+  run_cmd ./_ci/before_test.sh
+  run_cmd ./_ci/test.sh
 
   # Copies the generated wheel to our provisional wheels repository
   run_cmd cp -fv dist/*.whl ${WHEELS_DIR}/
-- 
GitLab