script/cibuild: if no TEST_SUITE is defined, run fmt, test, cucumber

/cc #5136
This commit is contained in:
Parker Moore 2016-07-25 21:08:05 -07:00
parent 9b0532a3c4
commit 30e34a72c0
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ set -e
if [[ -z "$TEST_SUITE" ]]
then
script/fmt
script/test ci
script/cucumber
elif [[ -x "script/$TEST_SUITE" ]]