summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/tasks/ci.rake6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake
index a1455a104..945836162 100644
--- a/lib/tasks/ci.rake
+++ b/lib/tasks/ci.rake
@@ -28,7 +28,11 @@ namespace :ci do
desc "Build Redmine"
task :build do
- Rake::Task["test"].invoke
+ if test_suite = ENV['TEST_SUITE']
+ Rake::Task["test:#{test_suite}"].invoke
+ else
+ Rake::Task["test"].invoke
+ end
# Rake::Task["test:ui"].invoke if RUBY_VERSION >= '1.9.3'
end