diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2025-09-17 11:31:34 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2025-09-17 14:34:58 +0900 |
| commit | e92543e76c13c257664e23d8f95a156e7cf9aef5 (patch) | |
| tree | 5b729c2755c88c747d09aafc1cbec8232ffff47d | |
| parent | fbc7e935761d892ba6c031256ccbb914963e4ce1 (diff) | |
Skip `TestSyncWithCommits` on other than particular platforms
No one uses `sync_default_gems_with` on other platforms; it is used by
the dedicated workflow and a few developers only.
| -rwxr-xr-x | tool/test/test_sync_default_gems.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/test/test_sync_default_gems.rb b/tool/test/test_sync_default_gems.rb index c84ebdb17e..adbde66fbf 100755 --- a/tool/test/test_sync_default_gems.rb +++ b/tool/test/test_sync_default_gems.rb @@ -314,5 +314,5 @@ module Test_SyncDefaultGems assert_equal(":ok\n""Should.be_merged\n", File.read("src/lib/common.rb"), out) assert_not_operator(File, :exist?, "src/lib/bad.rb", out) end - end + end if /darwin|linux/ =~ RUBY_PLATFORM end |
