Fix the CI script

The [ function doesn't support "&&" (you need [[ for that).

Also added an echo statement to inform that no tests were run if no if
statements matched.
This commit is contained in:
Henrik Hodne 2013-05-28 14:33:28 +02:00
parent 94ab700e0b
commit 3df9ee9723

View File

@ -6,10 +6,12 @@ elif [ "$TEST_SUITE" == "phantomjs" ]; then
bundle exec rackup -s puma -p 5000 -D
sleep 3
./run_jasmine.coffee http://localhost:5000/spec.html
elif [ "$TRAVIS_SECURE_ENV_VARS" == "true" && "$TEST_SUITE" == "saucelabs" ]; then
elif [ "$TRAVIS_SECURE_ENV_VARS" == "true" -a "$TEST_SUITE" == "saucelabs" ]; then
bundle exec rackup -s puma -p 5000 -D
sleep 3
curl https://gist.github.com/santiycr/5139565/raw/sauce_connect_setup.sh | bash
gem install selenium-webdriver
ruby script/saucelabs.rb
else
echo "Not running any tests"
fi