Skip to content

Commit b12db1e

Browse files
committed
testing if my comments are the cause of this issue, doubt it though
1 parent 94e7916 commit b12db1e

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

bin/ci-rspec

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,26 @@ export MYSQL_PASSWORD=mysql
55
export MYSQL_HOST=mysql
66
export MYSQL_DATABASE=mysql
77

8+
#REPORTER_BIN="cc-test-reporter"
89

910
echo "initalizing solr"
1011
bundle exec rake solr:create_collection
1112
bundle exec rake solr:update_config
1213
bundle exec rake solr:create_alias
1314
bundle exec rake solr:load_fixtures
1415

16+
#if [ ! -f ${REPORTER_BIN} ]; then
17+
# echo "Downloading Code Climate reporting tool"
18+
# if [[ $(uname) == *"Darwin"* ]]; then
19+
# wget -q https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 -O ${REPORTER_BIN}
20+
# else
21+
# wget -q https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 -O ${REPORTER_BIN}
22+
# fi
23+
# chmod 755 ${REPORTER_BIN}
24+
#fi
25+
26+
#./${REPORTER_BIN} before-build
1527
bundle exec rspec
1628
RSPEC_EXIT_CODE=$?
17-
18-
exit ${RSPEC_EXIT_CODE}
29+
#./${REPORTER_BIN} after-build
30+
exit ${RSPEC_EXIT_CODE}

0 commit comments

Comments
 (0)