From d92dcf848786c7484074e224c32152cb930ea4ab Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Mon, 2 Jan 2023 23:32:59 -0800 Subject: [PATCH] use sudo --- .circleci/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/run_tests.sh b/.circleci/run_tests.sh index 6ffef8ba..c27bb3b9 100644 --- a/.circleci/run_tests.sh +++ b/.circleci/run_tests.sh @@ -89,7 +89,7 @@ kill -SIGHUP $(pgrep pgcat) # Reload config again # cd tests/ruby sudo gem install bundler -bundle install +sudo bundle install bundle exec ruby tests.rb || exit 1 bundle exec rspec *_spec.rb || exit 1 cd ../..