Skip to content

Commit 1412aec

Browse files
committed
Rakefile: Pass TESTOPTS value to run-test.rb
1 parent e26a216 commit 1412aec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ FileList['tasks/**.rake'].each {|f| load f }
99

1010
desc "Run tests"
1111
task :test do
12+
test_opts = ENV.fetch("TESTOPTS", "").split
1213
cd(base_dir) do
13-
ruby("test/run-test.rb")
14+
ruby("test/run-test.rb", *test_opts)
1415
end
1516
end
1617

0 commit comments

Comments
 (0)