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