From e276e1a4580f60d78d3819ea4ee43a49cffa14ab Mon Sep 17 00:00:00 2001 From: mvandervoord Date: Sun, 15 Dec 2019 10:30:26 -0500 Subject: [PATCH] Swap order so that CI runs all the makefile tests... but local test:all skips them as mostly redundant and very platform specific. --- test/rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/rakefile b/test/rakefile index 9239957..af67fba 100644 --- a/test/rakefile +++ b/test/rakefile @@ -33,7 +33,7 @@ configure_toolchain(DEFAULT_CONFIG_FILE) ############# ALL THE SELF-TESTS WE CAN PERFORM namespace :test do desc "Build and test Unity" - task :all => [:clean, :prepare_for_tests, 'test:scripts', 'test:unit', :style, 'test:make', 'test:fixture', 'test:memory', 'test:summary'] + task :all => [:clean, :prepare_for_tests, 'test:scripts', 'test:unit', :style, 'test:fixture', 'test:memory', 'test:summary'] desc "Test unity with its own unit tests" task :unit => [:prepare_for_tests] do @@ -83,7 +83,7 @@ end ###################### Shorthand for many common tasks task :all => ['test:all'] task :default => [:clobber, :all] -task :ci => [:no_color, :default] +task :ci => [:no_color, 'test:make', :default] desc "Load configuration" task :config, :config_file do |t, args|