forked from adiwg/mdTranslator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
37 lines (34 loc) · 960 Bytes
/
Rakefile
File metadata and controls
37 lines (34 loc) · 960 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
27
28
29
30
31
32
33
34
35
36
37
require 'bundler/gem_tasks'
require 'rake/testtask'
# Rake::TestTask.new do |t|
# t.libs << 'test'
# t.test_files = FileList[
# 'test/writers/iso19115-2/tc*.rb'
# ]
# t.verbose = true
# end
Rake::TestTask.new do |t|
t.libs << 'test'
t.test_files = FileList[
'test/internal/*.rb',
'test/readers/fgdc/tc*.rb',
'test/readers/iso19115_2/tc*.rb',
'test/readers/iso19115_2_datagov/tc*.rb',
'test/readers/iso19115_3/tc*.rb',
'test/readers/mdJson/tc*.rb',
'test/readers/sbJson/tc*.rb',
'test/writers/fgdc/tc*.rb',
'test/writers/html/tc*.rb',
'test/writers/iso19110/tc*.rb',
'test/writers/iso19115-2/tc*.rb',
'test/writers/iso19115-3/tc*.rb',
'test/writers/mdJson/tc*.rb',
'test/writers/sbJson/tc*.rb',
'test/writers/dcat_us/tc*.rb',
'test/translator/tc*.rb'
]
t.verbose = true
t.warning = false
end
desc 'Run tests'
task default: :test