Skip to content

Commit 449944f

Browse files
committed
Split target into app and test
1 parent 890ff9d commit 449944f

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

ruby/Steepfile

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ target :app do
66
check 'main.rb'
77
check 'exec'
88
check 'src'
9-
check 'test'
9+
ignore 'test'
1010
signature 'sig'
1111

1212
library 'date'
@@ -15,3 +15,16 @@ target :app do
1515

1616
configure_code_diagnostics(D::Ruby.default)
1717
end
18+
19+
target :test do
20+
ignore 'main.rb'
21+
ignore 'exec'
22+
ignore 'src'
23+
check 'test'
24+
signature 'sig'
25+
26+
library 'fileutils'
27+
library 'minitest'
28+
29+
configure_code_diagnostics(D::Ruby.default)
30+
end

0 commit comments

Comments
 (0)