From f3b87bb91c8d1b8c1999bc96e718e31d18f43881 Mon Sep 17 00:00:00 2001 From: mvandervoord Date: Sun, 15 Dec 2019 14:36:59 -0500 Subject: [PATCH] another tweak to how we handle the ci vs local testing. --- test/rakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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|