From 567087ce0320333ae72169eebe36907695f9bc09 Mon Sep 17 00:00:00 2001 From: Wade Alcorn Date: Fri, 13 Jan 2012 14:08:06 +1000 Subject: [PATCH] Added automated testing task --- Rakefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Rakefile b/Rakefile index ef993614f..3bfba6e07 100644 --- a/Rakefile +++ b/Rakefile @@ -28,6 +28,12 @@ task :all do Rake::Task['msf'].invoke # run msf tests end +desc "Run automated tests (for Jenkins)" +task :automated do + Rake::Task['unit'].invoke # run unit tests + Rake::Task['msf'].invoke # run msf tests +end + desc "Run integration unit tests" task :integration => ["install"] do Rake::Task['beef_start'].invoke