forked from Shopify/shipit-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
26 lines (20 loc) · 645 Bytes
/
Rakefile
File metadata and controls
26 lines (20 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
begin
require 'rubocop/rake_task'
RuboCop::RakeTask.new
rescue LoadError
end
APP_RAKEFILE = File.expand_path('../test/dummy/Rakefile', __FILE__)
load('rails/tasks/engine.rake')
Bundler::GemHelper.install_tasks
require 'rake/testtask'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.test_files = FileList.new('test/**/*_test.rb').exclude('test/dummy/**/*')
t.verbose = false
t.warning = false
end
task(default: :test)