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 781a912 commit a0f46d9Copy full SHA for a0f46d9
1 file changed
airbyte_cdk/cli/airbyte_cdk/_connector.py
@@ -163,11 +163,10 @@ def test(
163
164
pytest_args.append(str(test_file_path))
165
166
- if connector_directory:
167
- build_dir = connector_directory / "build" / "test-results"
168
- build_dir.mkdir(parents=True, exist_ok=True)
169
- junit_xml_path = build_dir / "standard-tests-junit.xml"
170
- pytest_args.extend(["--junitxml", str(junit_xml_path)])
+ build_dir = connector_directory / "build" / "test-results"
+ build_dir.mkdir(parents=True, exist_ok=True)
+ junit_xml_path = build_dir / "standard-tests-junit.xml"
+ pytest_args.extend(["--junitxml", str(junit_xml_path)])
171
172
click.echo(f"Running tests from connector directory: {connector_directory}...")
173
click.echo(f"Test file: {test_file_path}")
0 commit comments