Skip to content

Commit

Permalink
Exclude scaffold during validate all (airbytehq#25856)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnchrch authored May 5, 2023
1 parent 7f36de2 commit a682955
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/ci_connector_ops/ci_connector_ops/pipelines/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,11 @@ def get_modified_metadata_files(modified_files: Set[Union[str, Path]]) -> Set[Pa


def get_all_metadata_files() -> Set[Path]:
return {Path(metadata_file) for metadata_file in glob("airbyte-integrations/connectors/**/metadata.yaml", recursive=True)}
return {
Path(metadata_file)
for metadata_file in glob("airbyte-integrations/connectors/**/metadata.yaml", recursive=True)
if "-scaffold-" not in metadata_file
}


def slugify(value: Any, allow_unicode: bool = False):
Expand Down

0 comments on commit a682955

Please sign in to comment.