pavel-avilov commented on a change in pull request #16701:
URL: https://github.com/apache/beam/pull/16701#discussion_r798281126



##########
File path: playground/infrastructure/ci_helper.py
##########
@@ -42,10 +42,12 @@ async def verify_examples(self, examples: List[Example]):
 
     1. Find all beam examples starting from directory 
os.getenv("BEAM_ROOT_DIR")
     2. Group code of examples by their SDK.
-    3. Run processing for all examples to verify examples' code.
+    3. Run processing for single-file examples to verify examples' code.
     """
-    await get_statuses(examples)
-    await self._verify_examples(examples)
+    single_file_examples = [example for example in examples
+                            if example.tag.multifile is False]

Review comment:
       Done.

##########
File path: playground/infrastructure/cd_helper.py
##########
@@ -41,14 +41,18 @@ 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 = [
+        example for example in examples if example.tag.multifile is False
+    ]

Review comment:
       Done.




-- 
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]


Reply via email to