From 66c2fa127084e31aa0f26087f46756aa034af775 Mon Sep 17 00:00:00 2001 From: Dan Smith <dsmith@danplanet.com> Date: Sat, 13 Feb 2016 18:30:34 +0000 Subject: [PATCH] Make it easier to run cibuild locally Just treat lack of travis environment as "run everything" --- script/cibuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/cibuild b/script/cibuild index 3a8dbd69c6e..95c9e48d6f8 100755 --- a/script/cibuild +++ b/script/cibuild @@ -5,7 +5,7 @@ cd "$(dirname "$0")/.." -if [ "$TRAVIS_PYTHON_VERSION" = "3.5" ]; then +if [ -z "$TRAVIS_PYTHON_VERSION" -o "$TRAVIS_PYTHON_VERSION" = "3.5" ]; then echo "Verifying requirements_all.txt..." python3 setup.py -q develop tput setaf 1 -- GitLab