We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f227297 commit e3aa52eCopy full SHA for e3aa52e
airbyte_cdk/cli/airbyte_cdk/_image.py
@@ -131,7 +131,11 @@ def image_test( # "image test" command
131
connector_name, connector_directory = resolve_connector_name_and_directory(connector)
132
133
# Select only tests with the 'image_tests' mark
134
- pytest_args = ["-m", "image_tests and not requires_creds" if no_creds else "image_tests"]
+ pytest_filter = "image_tests"
135
+ if no_creds:
136
+ pytest_filter += " and not requires_creds"
137
+
138
+ pytest_args = ["-m", pytest_filter]
139
if not image:
140
metadata_file_path: Path = connector_directory / "metadata.yaml"
141
try:
0 commit comments