summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-23 18:18:37 +1000
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-09-05 18:16:04 +0900
commit1ad02ec15d4fab8cf22fbd49ef656e62e8953aab (patch)
treeeec0826d43e7b3981cf6420ceeedda97ae7904d6
parentb007fde67c77c1f15f13b97eda186644c2a2be04 (diff)
downloadbundler-1ad02ec15d4fab8cf22fbd49ef656e62e8953aab.tar.gz
Remove github_action_linux tag from bundler examples.
Maybe it has fixed at 5a384e2c08704dc7af9d8d3bdfc475eb8c0723aa
-rw-r--r--spec/commands/exec_spec.rb2
-rw-r--r--spec/spec_helper.rb1
2 files changed, 1 insertions, 2 deletions
diff --git a/spec/commands/exec_spec.rb b/spec/commands/exec_spec.rb
index a36b303060..cf76d3fb93 100644
--- a/spec/commands/exec_spec.rb
+++ b/spec/commands/exec_spec.rb
@@ -55,7 +55,7 @@ RSpec.describe "bundle exec" do
expect(out).to eq("hi")
end
- it "respects custom process title when loading through ruby", :github_action_linux do
+ it "respects custom process title when loading through ruby" do
script_that_changes_its_own_title_and_checks_if_picked_up_by_ps_unix_utility = <<~'RUBY'
Process.setproctitle("1-2-3-4-5-6-7-8-9-10-11-12-13-14-15")
puts `ps -ocommand= -p#{$$}`
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index f10f6c464f..58d498e070 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -71,7 +71,6 @@ RSpec.configure do |config|
config.filter_run_excluding :bundler => RequirementChecker.against(Bundler::VERSION.split(".")[0])
config.filter_run_excluding :ruby_repo => !ENV["GEM_COMMAND"].nil?
config.filter_run_excluding :no_color_tty => Gem.win_platform? || !ENV["GITHUB_ACTION"].nil?
- config.filter_run_excluding :github_action_linux => !ENV["GITHUB_ACTION"].nil? && (ENV["RUNNER_OS"] == "Linux")
config.filter_run_when_matching :focus unless ENV["CI"]