Commit 5b3c230b995f6fd2480fe2137cd1ec4d689bce82

Authored by Antonio Terceiro
1 parent ba1449a6

ci.rake: drop git log; the ci system should do it

Showing 1 changed file with 0 additions and 4 deletions   Show diff stats
lib/tasks/ci.rake
@@ -8,10 +8,6 @@ namespace :ci do @@ -8,10 +8,6 @@ namespace :ci do
8 to = ENV['HEAD'] || current_branch 8 to = ENV['HEAD'] || current_branch
9 changed_files = `git diff --name-only #{from}..#{to}`.split 9 changed_files = `git diff --name-only #{from}..#{to}`.split
10 10
11 - unless $stdout.isatty  
12 - sh "git", "log", "--name-status", "#{from}..#{to}"  
13 - end  
14 -  
15 # explicitly changed tests 11 # explicitly changed tests
16 tests = changed_files.select { |f| f =~ /test\/.*_test\.rb$/ } 12 tests = changed_files.select { |f| f =~ /test\/.*_test\.rb$/ }
17 features = changed_files.select { |f| f =~ /\.feature$/ } 13 features = changed_files.select { |f| f =~ /\.feature$/ }