aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Rich Gowman <rgowman@google.com>2018-05-29 17:42:22 -0400
committerGravatar Rich Gowman <rgowman@google.com>2018-05-29 17:49:12 -0400
commit1597765af8c897ab73d21d6d404f8eeede7890b1 (patch)
tree26f84f9acd093418f3a8134d8cef1f048ce01151 /scripts
parent91a97558b4fbe5245d6db4a2dab02098bcdbef91 (diff)
Add CoreTestsProtos to scripts/sync_project.rb (and run it)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/sync_project.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/sync_project.rb b/scripts/sync_project.rb
index e34ae31..b6dc1c2 100755
--- a/scripts/sync_project.rb
+++ b/scripts/sync_project.rb
@@ -59,6 +59,7 @@ def sync_firestore()
s.test_groups = [
'Tests',
'CoreTests',
+ 'CoreTestsProtos',
'SwiftTests',
]
@@ -66,6 +67,7 @@ def sync_firestore()
t.source_files = [
'Firestore/Example/Tests/**',
'Firestore/core/test/**',
+ 'Firestore/Protos/cpp/**',
'Firestore/third_party/Immutable/Tests/**',
]
t.exclude_files = [
@@ -74,6 +76,9 @@ def sync_firestore()
# These files are integration tests, handled below
'Firestore/Example/Tests/Integration/**',
+
+ # These files are already provided by the ProtobufCpp pod.
+ 'Firestore/Protos/cpp/google/protobuf/**',
]
end