ilya-kozyrev commented on a change in pull request #16701:
URL: https://github.com/apache/beam/pull/16701#discussion_r799399200
##########
File path: playground/infrastructure/cd_helper.py
##########
@@ -41,14 +41,17 @@ class CDHelper:
It is used to save beam examples/katas/tests and their output on the GCS.
"""
-
def store_examples(self, examples: List[Example]):
"""
Store beam examples and their output in the Google Cloud.
+
+ Outputs for multifile examples are left empty.
"""
- logging.info("Start of executing Playground examples ...")
- asyncio.run(self._get_outputs(examples))
- logging.info("Finish of executing Playground examples")
+ single_file_examples = list(filter(
Review comment:
you don't need cast from filter results to list if you plan to iterate
through.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]