|
|
@ -1,4 +1,4 @@ |
|
|
|
#!/usr/bin/env python2.7 |
|
|
|
#!/usr/bin/env python |
|
|
|
# Copyright 2015 gRPC authors. |
|
|
|
# Copyright 2015 gRPC authors. |
|
|
|
# |
|
|
|
# |
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
@ -16,6 +16,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
"""Generates the appropriate build.json data for all the end2end tests.""" |
|
|
|
"""Generates the appropriate build.json data for all the end2end tests.""" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from __future__ import print_function |
|
|
|
|
|
|
|
|
|
|
|
import yaml |
|
|
|
import yaml |
|
|
|
import collections |
|
|
|
import collections |
|
|
@ -405,7 +406,7 @@ def main(): |
|
|
|
for t in END2END_TESTS.keys() |
|
|
|
for t in END2END_TESTS.keys() |
|
|
|
) |
|
|
|
) |
|
|
|
} |
|
|
|
} |
|
|
|
print yaml.dump(json) |
|
|
|
print(yaml.dump(json)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
if __name__ == '__main__': |
|
|
|