Skip to content

Commit

Permalink
Merge pull request grpc#2835 from nicolasnoble/test-platforms-are-sad
Browse files Browse the repository at this point in the history
Re-enabling tests that got culled off.
  • Loading branch information
ctiller committed Aug 7, 2015
2 parents 83f8416 + 63323e3 commit 5b5afca
Show file tree
Hide file tree
Showing 2 changed files with 148 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/buildgen/plugins/expand_bin_attrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ def mako_plugin(dictionary):
"""

targets = dictionary.get('targets')
default_platforms = ['windows', 'posix', 'linux', 'mac']

for tgt in targets:
tgt['flaky'] = tgt.get('flaky', False)
tgt['platforms'] = sorted(tgt.get('platforms', ['windows', 'posix']))
tgt['platforms'] = sorted(tgt.get('platforms', default_platforms))

Loading

0 comments on commit 5b5afca

Please sign in to comment.