Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sdks/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ def copy_tests_from_docs():
for path in glob.glob(os.path.join(docs_src, 'yaml*.md')):
shutil.copy(path, docs_dest)
else:
if not os.path.exists(docs_dest):
raise RuntimeError(
f'Could not locate yaml docs in {docs_src} or {docs_dest}.')
warnings.warn(
f'Could not locate yaml docs source directory {docs_src}. '
f'Skipping copying tests from docs.')


def generate_external_transform_wrappers():
Expand Down
Loading