blob: 43d2ef73dc2178743cff3fcf93166408cab68a13 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/bash
# A convenience script to run tests without delays caused by incrementally writing to the terminal buffer.
GEM_PATH=$(bundle exec ruby -e "puts ENV['GEM_HOME']")
CONSOLE_OUTPUT=$(rake test:all 2>&1)
echo "$CONSOLE_OUTPUT"
|