derrickaw commented on code in PR #35696:
URL: https://github.com/apache/beam/pull/35696#discussion_r2232009122
##########
sdks/python/apache_beam/yaml/integration_tests.py:
##########
@@ -753,14 +753,16 @@ def parse_test_files(filepattern):
For example, 'path/to/tests/*.yaml'.
"""
for path in glob.glob(filepattern):
- with open(path) as fin:
- suite_name = os.path.splitext(os.path.basename(path))[0].title().replace(
- '-', '') + 'Test'
- print(path, suite_name)
- methods = dict(
- create_test_methods(
- yaml.load(fin, Loader=yaml_transform.SafeLineLoader)))
- globals()[suite_name] = type(suite_name, (unittest.TestCase, ), methods)
+ if "bigtable" in path:
Review Comment:
Lets remove that filter.
--
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]