Skip to content

Commit c81a411

Browse files
authored
apply suggestion
1 parent a0f46d9 commit c81a411

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

airbyte_cdk/cli/airbyte_cdk/_connector.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ def test(
163163

164164
pytest_args.append(str(test_file_path))
165165

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"
166+
test_results_dir = connector_directory / "build" / "test-results"
167+
test_results_dir.mkdir(parents=True, exist_ok=True)
168+
junit_xml_path = test_results_dir / "standard-tests-junit.xml"
169169
pytest_args.extend(["--junitxml", str(junit_xml_path)])
170170

171171
click.echo(f"Running tests from connector directory: {connector_directory}...")

0 commit comments

Comments
 (0)