Skip to content

Commit 0455882

Browse files
committed
better error message
1 parent 587bf35 commit 0455882

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/ci_connector_ops/ci_connector_ops/check_test_strictness_level.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ def find_connectors_with_bad_strictness_level() -> List[str]:
4141
def main():
4242
connectors_with_bad_strictness_level = find_connectors_with_bad_strictness_level()
4343
if connectors_with_bad_strictness_level:
44-
logging.error(f"The following GA connectors must enable high test strictness level: {connectors_with_bad_strictness_level}")
44+
logging.error(
45+
f"The following GA connectors must enable high test strictness level: {connectors_with_bad_strictness_level}. Please check this documentation for details: https://docs.airbyte.com/connector-development/testing-connectors/source-acceptance-tests-reference/#strictness-level"
46+
)
4547
sys.exit(1)
4648
else:
4749
sys.exit(0)

0 commit comments

Comments
 (0)