1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove github_action_linux tag from bundler examples.

Maybe it has fixed at 5a384e2c08
This commit is contained in:
Hiroshi SHIBATA 2019-08-23 18:18:37 +10:00 committed by SHIBATA Hiroshi
parent 3b55394b07
commit d9b73dcc0d
Notes: git 2019-08-31 04:40:14 +09:00
2 changed files with 1 additions and 2 deletions

View file

@ -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#{$$}`

View file

@ -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"]