Commit 5b3c230b995f6fd2480fe2137cd1ec4d689bce82
1 parent
ba1449a6
Exists in
master
and in
29 other branches
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 | 8 | to = ENV['HEAD'] || current_branch |
9 | 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 | 11 | # explicitly changed tests |
16 | 12 | tests = changed_files.select { |f| f =~ /test\/.*_test\.rb$/ } |
17 | 13 | features = changed_files.select { |f| f =~ /\.feature$/ } | ... | ... |