Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bundler/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec

if [[ "$SUITE_NAME" == "bundler1" ]]; then
cd helpers/v1 \
&& BUNDLER_VERSION=1.17.3 bundle install \
&& BUNDLER_VERSION=1.17.3 bundle exec rspec spec\
&& BUNDLER_VERSION=1.17.3 bundle exec parallel_rspec spec\
&& cd -
fi

if [[ "$SUITE_NAME" == "bundler2" ]]; then
cd helpers/v2 \
&& BUNDLER_VERSION=2.2.33 bundle install \
&& BUNDLER_VERSION=2.2.33 bundle exec rspec spec \
&& BUNDLER_VERSION=2.2.33 bundle exec parallel_rspec spec \
&& cd -
fi
2 changes: 1 addition & 1 deletion cargo/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
1 change: 1 addition & 0 deletions common/dependabot-common.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Gem::Specification.new do |spec|

spec.add_development_dependency "debug", ">= 1.0.0"
spec.add_development_dependency "gpgme", "~> 2.0"
spec.add_development_dependency "parallel_tests", "~> 3.7.3"
spec.add_development_dependency "rake", "~> 13"
spec.add_development_dependency "rspec", "~> 3.8"
spec.add_development_dependency "rspec-its", "~> 1.2"
Expand Down
2 changes: 1 addition & 1 deletion common/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion composer/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion docker/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion elm/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion git_submodules/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion github_actions/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion go_modules/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion gradle/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion hex/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion maven/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion npm_and_yarn/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec

cd /opt/npm_and_yarn && npm run lint && cd -
cd /opt/npm_and_yarn && npm test && cd -
2 changes: 1 addition & 1 deletion nuget/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion python/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ set -e
bundle install
pyenv exec flake8 helpers/. --count --exclude=./.*,./python/spec/fixtures --show-source --statistics
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec
2 changes: 1 addition & 1 deletion terraform/script/ci-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

bundle install
bundle exec rubocop .
bundle exec rspec spec
bundle exec parallel_rspec spec