File: Rakefile

package info (click to toggle)
ruby-liquid-c 4.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 504 kB
  • sloc: ansic: 3,866; ruby: 1,151; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 376 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require "rake"
require "rake/testtask"
require "bundler/gem_tasks"
require "rake/extensiontask"
require "benchmark"
require "ruby_memcheck"

ENV["DEBUG"] ||= "true"

task default: [:test, :rubocop]

task test: ["test:unit", "test:integration:all"]

namespace :test do
  task valgrind: ["test:unit:valgrind", "test:integration:valgrind:all"]
end