summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-11 08:10:40 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-11 12:17:22 +0900
commitbb2f24251f011d64d369d78f344e298cc9486473 (patch)
tree4564da2fa261c0f15aa009816cb0d47e18f45e11 /spec
parentc685679e25f6a4547c3b48c290bfb905cde0b4ef (diff)
downloadruby-bb2f24251f011d64d369d78f344e298cc9486473.tar.gz
GitHub Actions does not support ANSI color code. Skip failing examples.
Diffstat (limited to 'spec')
-rw-r--r--spec/bundler/spec_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/spec_helper.rb b/spec/bundler/spec_helper.rb
index e1e730e28f..53e59991a2 100644
--- a/spec/bundler/spec_helper.rb
+++ b/spec/bundler/spec_helper.rb
@@ -73,7 +73,7 @@ RSpec.configure do |config|
config.filter_run_excluding :git => RequirementChecker.against(git_version)
config.filter_run_excluding :bundler => RequirementChecker.against(Bundler::VERSION.split(".")[0])
config.filter_run_excluding :ruby_repo => !(ENV["BUNDLE_RUBY"] && ENV["BUNDLE_GEM"]).nil?
- config.filter_run_excluding :non_windows => Gem.win_platform?
+ config.filter_run_excluding :non_windows => Gem.win_platform? || ENV["CI"]
config.filter_run_when_matching :focus unless ENV["CI"]