Skip to content

Commit

Permalink
Windows tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Sep 1, 2015
1 parent 6c99868 commit d590482
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/run_tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,10 @@ def test_specs(self, config, travis):
def make_targets(self):
# For Windows, this target doesn't really build anything,
# everything is build by buildall script later.
return ['grpc_csharp_ext']
if self.platform == 'windows':
return []
else:
return ['grpc_csharp_ext']

def build_steps(self):
if self.platform == 'windows':
Expand Down

0 comments on commit d590482

Please sign in to comment.