Skip to content

Commit

Permalink
qa-check: tolerate http string in expected records
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed Nov 14, 2023
1 parent f6bc4b8 commit 9faeee8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion airbyte-ci/connectors/connector_ops/connector_ops/qa_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,15 @@ def read_all_files_in_directory(
".hypothesis",
}

IGNORED_FILENAME_PATTERN_FOR_HTTPS_CHECKS = {"*Test.java", "*.jar", "*.pyc", "*.gz", "*.svg"}
IGNORED_FILENAME_PATTERN_FOR_HTTPS_CHECKS = {
"*Test.java",
"*.jar",
"*.pyc",
"*.gz",
"*.svg",
"expected_records.jsonl",
"expected_records.json",
}
IGNORED_URLS_PREFIX = {
"http://json-schema.org",
"http://localhost",
Expand Down
2 changes: 1 addition & 1 deletion airbyte-ci/connectors/connector_ops/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "connector_ops"
version = "0.3.2"
version = "0.3.3"
description = "Packaged maintained by the connector operations team to perform CI for connectors"
authors = ["Airbyte <contact@airbyte.io>"]

Expand Down

0 comments on commit 9faeee8

Please sign in to comment.