shageman/the_next_big_thing

View on GitHub
components/annoyance/test.sh

Summary

Maintainability
Test Coverage
#!/bin/bash

exit_code=0

echo "*** Running annoyance gem specs"
bundle install  --jobs=3 --retry=3 | grep Installing
bundle exec rspec spec
exit_code+=$?

exit $exit_code