Almost all tests passing, except profiler

This commit is contained in:
Sam Doiron
2022-04-06 17:35:00 -03:00
parent 6e07f73f68
commit c2b7b3df50
4 changed files with 97 additions and 0 deletions
+15
View File
@@ -53,6 +53,21 @@ task :test do
Rake::Task['integration_test'].reenable
Rake::Task['integration_test'].invoke
end
if RUBY_ENGINE == 'ruby'
Rake::Task['test_compile'].invoke
end
end
task :test_compile do
ENV['LIQUID_COMPILE'] = '1'
ENV['LIQUID_PARSER_MODE'] = 'lax'
Rake::Task['integration_test'].reenable
Rake::Task['integration_test'].invoke
ENV['LIQUID_PARSER_MODE'] = 'strict'
Rake::Task['integration_test'].reenable
Rake::Task['integration_test'].invoke
end
task(gem: :build)