Skip to content

Commit 3468d17

Browse files
committed
Capture test stdout, stderr and log output in Build Scan
1 parent a45d00e commit 3468d17

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

gradle-report-pytest-tests/build.gradle.kts

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@ import com.gradle.develocity.agent.gradle.test.JUnitXmlDialect
33

44
val reportsDir = layout.buildDirectory.dir("reports/pytest")
55
val pytest by tasks.registering(Exec::class) {
6-
commandLine("pytest", "--junitxml=${reportsDir.get().asFile.absolutePath}/pytest.xml")
6+
commandLine(
7+
"pytest",
8+
"--capture=tee-sys",
9+
"-o",
10+
"junit_logging=all",
11+
"--junitxml=${reportsDir.get().asFile.absolutePath}/pytest.xml"
12+
)
713
outputs.dir(reportsDir)
814
}
915

0 commit comments

Comments
 (0)