1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
thoughtbot--shoulda-matchers/script/run_all_tests
2018-01-24 00:30:10 -06:00

16 lines
316 B
Bash
Executable file

#!/bin/bash
set -euo pipefail
SUPPORTED_VERSIONS=$(script/supported_ruby_versions)
run-tests-for-version() {
local version="$1"
(export RBENV_VERSION=$version; bundle exec rake)
}
for version in $SUPPORTED_VERSIONS; do
echo
echo "*** Running tests for $version ***"
run-tests-for-version $version
done