summaryrefslogtreecommitdiff
path: root/scripts/bk_tests
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/bk_tests')
-rwxr-xr-xscripts/bk_tests/bk_container_prep.sh2
-rwxr-xr-xscripts/bk_tests/bk_linux_exec.sh7
2 files changed, 6 insertions, 3 deletions
diff --git a/scripts/bk_tests/bk_container_prep.sh b/scripts/bk_tests/bk_container_prep.sh
index 8c3bda15e0..0e9c44b583 100755
--- a/scripts/bk_tests/bk_container_prep.sh
+++ b/scripts/bk_tests/bk_container_prep.sh
@@ -20,4 +20,4 @@ gem install bundler -v $(grep :bundler omnibus_overrides.rb | cut -d'"' -f2)
bundle --version
rm -f .bundle/config
-echo +++ testing
+echo "+++ Run tests"
diff --git a/scripts/bk_tests/bk_linux_exec.sh b/scripts/bk_tests/bk_linux_exec.sh
index b4bbce59f9..d5993293c9 100755
--- a/scripts/bk_tests/bk_linux_exec.sh
+++ b/scripts/bk_tests/bk_linux_exec.sh
@@ -40,9 +40,12 @@ echo "--- Installing Ruby 2.6.6"
/opt/asdf/bin/asdf global ruby 2.6.6
# Update Gems
+echo 'gem: --no-document' >> ~/.gemrc
gem update --system $(grep rubygems omnibus_overrides.rb | cut -d'"' -f2)
-gem install bundler -v $(grep :bundler omnibus_overrides.rb | cut -d'"' -f2) --force --no-document
+gem install bundler -v $(grep :bundler omnibus_overrides.rb | cut -d'"' -f2) --force
sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
ruby --version
which bundle
-bundle install --jobs=3 --retry=3 --path=vendor/bundle \ No newline at end of file
+bundle install --jobs=3 --retry=3 --path=vendor/bundle
+
+echo "+++ Running tests" \ No newline at end of file