aboutsummaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2017-03-19 23:32:54 -0700
committerGravatar Alexander Polcyn <apolcyn@google.com>2017-03-20 00:07:25 -0700
commit4e606751db54e289fae86aed7e1b1c2f35478469 (patch)
treec36ec08732b5de4355fe9e8e3f3b62f3baa97413 /Rakefile
parentb862b6ae205628d7713ee2e4cbb752206cf0b1f6 (diff)
add end2end tests to formatter and adjust to formatter
Diffstat (limited to 'Rakefile')
-rwxr-xr-xRakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 12ac12710f..cc02aa130a 100755
--- a/Rakefile
+++ b/Rakefile
@@ -12,7 +12,8 @@ load 'tools/distrib/docker_for_windows.rb'
# Add rubocop style checking tasks
RuboCop::RakeTask.new(:rubocop) do |task|
task.options = ['-c', 'src/ruby/.rubocop.yml']
- task.patterns = ['src/ruby/{lib,spec}/**/*.rb']
+ # add end2end tests to formatter but don't add generated proto _pb.rb's
+ task.patterns = ['src/ruby/{lib,spec}/**/*.rb', 'src/ruby/end2end/*.rb']
end
spec = Gem::Specification.load('grpc.gemspec')