We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f03dc9f commit c64ff62Copy full SHA for c64ff62
1 file changed
airbyte_cdk/cli/airbyte_cdk/_connector.py
@@ -162,6 +162,12 @@ def test(
162
pytest_args.append("--collect-only")
163
164
pytest_args.append(str(test_file_path))
165
+
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"
169
+ pytest_args.extend(["--junitxml", str(junit_xml_path)])
170
171
click.echo(f"Running tests from connector directory: {connector_directory}...")
172
click.echo(f"Test file: {test_file_path}")
173
click.echo(f"Collect only: {collect_only}")
0 commit comments