diff --git a/playbooks/run-lint-tests.yaml b/playbooks/run-lint-tests.yaml index 385cc3dde..e88c143f9 100644 --- a/playbooks/run-lint-tests.yaml +++ b/playbooks/run-lint-tests.yaml @@ -26,7 +26,8 @@ cmd += ' -v 2.2.11' system(cmd) EOF - $GEM_BIN_DIR/bundle install --without system_tests --retry 3 + $GEM_BIN_DIR/bundle config set --local without system_tests + $GEM_BIN_DIR/bundle install --retry 3 $GEM_BIN_DIR/bundle exec rake lint 2>&1 if [ -f metadata.json ]; then $GEM_BIN_DIR/bundle exec rake metadata_lint 2>&1 diff --git a/playbooks/run-litmus-tests.yaml b/playbooks/run-litmus-tests.yaml index 0d6181c78..5ae818091 100644 --- a/playbooks/run-litmus-tests.yaml +++ b/playbooks/run-litmus-tests.yaml @@ -23,7 +23,8 @@ cmd += ' -v 2.2.11' system(cmd) EOF - $GEM_BIN_DIR/bundle install --without system_tests --retry 3 + $GEM_BIN_DIR/bundle config set --local without system_tests + $GEM_BIN_DIR/bundle install --retry 3 export RSPEC_DEBUG=true $GEM_BIN_DIR/bundle exec rake litmus:acceptance:localhost chdir: '{{ ansible_user_dir }}/workspace'