spec/run_parallel_tests in ably-1.2.0 vs spec/run_parallel_tests in ably-1.2.1

- old
+ new

@@ -9,16 +9,11 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" bundle exec rspec "${DIR}/unit" unit_status=$? -if ruby -v | grep -e "1.9"; then - # Output with test ID is not supported with this old version of RSpec - # So it will be jumbled sadly for 1.9.* - bundle exec parallel_rspec "${DIR}/acceptance" -else - bundle exec parallel_rspec "${DIR}/acceptance" --prefix-output-with-test-env-number -fi +bundle exec parallel_rspec "${DIR}/acceptance" --prefix-output-with-test-env-number + acceptance_status=$? if [ $unit_status -ne 0 ]; then echo -e "\e[31m⚠ Note: Unit tests have also failed, but are not listed in the test failures above. Scroll up to the unit tests ⚠\e[0m" fi