Merge pull request #2066 from eregon/skip-slow-test

Skip slow test raising many exceptions on non-CRuby
This commit is contained in:
Kevin Menard
2026-03-26 02:14:10 -04:00
committed by GitHub
+2
View File
@@ -1181,6 +1181,8 @@ class StandardFiltersTest < Minitest::Test
end end
def test_all_filters_never_raise_non_liquid_exception def test_all_filters_never_raise_non_liquid_exception
skip("too slow on non-CRuby due to many exceptions") unless RUBY_ENGINE == 'ruby'
test_drop = TestDrop.new(value: "test") test_drop = TestDrop.new(value: "test")
test_drop.context = Context.new test_drop.context = Context.new
test_enum = TestEnumerable.new test_enum = TestEnumerable.new