diff --git a/test/rakefile b/test/rakefile index af67fba..09e4e58 100644 --- a/test/rakefile +++ b/test/rakefile @@ -34,6 +34,7 @@ configure_toolchain(DEFAULT_CONFIG_FILE) namespace :test do desc "Build and test Unity" task :all => [:clean, :prepare_for_tests, 'test:scripts', 'test:unit', :style, 'test:fixture', 'test:memory', 'test:summary'] + task :ci => [:clean, :prepare_for_tests, 'test:scripts', 'test:unit', :style, 'test:make', 'test:fixture', 'test:memory', 'test:summary'] desc "Test unity with its own unit tests" task :unit => [:prepare_for_tests] do @@ -81,9 +82,9 @@ namespace :test do end ###################### Shorthand for many common tasks +task :ci => ['test:ci'] task :all => ['test:all'] task :default => [:clobber, :all] -task :ci => [:no_color, 'test:make', :default] desc "Load configuration" task :config, :config_file do |t, args|