Skip to content

Commit f405710

Browse files
committed
remove line echoing
1 parent 062da01 commit f405710

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

run_tests.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
# Execute the JS tests for travis-ci.org integration testing platform.
33
# The directory to test comes as the environment variable TEST_DIR.
44

5-
# Echo lines as they are executed.
6-
set -v
7-
85
# Use an "if" statement to check the value of TEST_DIR, then include commands
96
# necessary to test that implmentation. Note that this script is running in the
107
# top level directory, not in TEST_DIR. The commands must be followed with an
@@ -28,9 +25,8 @@ fi
2825
# Ruby?
2926
if [ "$TEST_DIR" == "ruby" ]; then
3027
rvm install 2.2.3
31-
#source ~/.rvm/scripts/rvm
32-
#rvm use 2.2.3
33-
rvm alias create default 2.2.3
28+
source ~/.rvm/scripts/rvm
29+
rvm use 2.2.3
3430
gem install test-unit
3531
cd ruby && ruby test/plus_codes_test.rb
3632
exit

0 commit comments

Comments
 (0)