We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a45d00e commit 3468d17Copy full SHA for 3468d17
gradle-report-pytest-tests/build.gradle.kts
@@ -3,7 +3,13 @@ import com.gradle.develocity.agent.gradle.test.JUnitXmlDialect
3
4
val reportsDir = layout.buildDirectory.dir("reports/pytest")
5
val pytest by tasks.registering(Exec::class) {
6
- commandLine("pytest", "--junitxml=${reportsDir.get().asFile.absolutePath}/pytest.xml")
+ commandLine(
7
+ "pytest",
8
+ "--capture=tee-sys",
9
+ "-o",
10
+ "junit_logging=all",
11
+ "--junitxml=${reportsDir.get().asFile.absolutePath}/pytest.xml"
12
+ )
13
outputs.dir(reportsDir)
14
}
15
0 commit comments