1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 00:15:58 +01:00

another tweak to how we handle the ci vs local testing.

This commit is contained in:
mvandervoord
2019-12-15 14:36:59 -05:00
parent e276e1a458
commit f3b87bb91c

View File

@@ -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|