diff options
author | Takashi Kokubun <takashikkbn@gmail.com> | 2025-09-05 14:17:22 -0700 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2025-09-05 14:18:49 -0700 |
commit | 8aa885c460aeb70878538eebdd155c6318989fd2 (patch) | |
tree | 1b5c6a0e508dafd8c31494478a63a4bde5dd4379 | |
parent | 11275d13c1aa4709338702ca1438d1cf21228185 (diff) |
The previous one failed:
https://github.com/ruby/ruby/actions/runs/17504307509/job/49724437021
$GITHUB_ACTION_REPOSITORY points to the owner of the action,
so it might not be ruby/ruby.
-rw-r--r-- | test/rubygems/test_gem_command_manager.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rubygems/test_gem_command_manager.rb b/test/rubygems/test_gem_command_manager.rb index 4056ecd831..eeda4d94cf 100644 --- a/test/rubygems/test_gem_command_manager.rb +++ b/test/rubygems/test_gem_command_manager.rb @@ -72,7 +72,7 @@ class TestGemCommandManager < Gem::TestCase end def test_find_command_unknown_suggestions - omit "randomly fails on ruby/ruby CI" if ENV["GITHUB_ACTION_REPOSITORY"] == "ruby/ruby" + omit "randomly fails on ruby/ruby CI" if ENV["GITHUB_REPOSITORY"] == "ruby/ruby" e = assert_raise Gem::UnknownCommandError do @command_manager.find_command "pish" end |