DV
Size: a a a
DV
AE
AE
AE
DV
𝕯
М
[DC_UI_login_test] $ /data/jenkins/tools/ru.yandex.qatools.allure.jenkins.tools.AllureCommandlineInstallation/Allure_Reporting_2.10/bin/allure generate /data/jenkins/workspace/BSS/.../build/allure-results -c -o /data/jenkins/workspace/BSS/projects/Data-crawler/tests/DC_UI_login_test/allure-report
17:59:44 Could not read test result file /data/jenkins/workspace/BSS/projects/.../build/allure-results/f15475ca-1290-4981-9f13-090de21ae30f-result.json
17:59:44 com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "testCaseName" (class io.qameta.allure.model.TestResult), not marked as ignorable (18 known properties: "start", "descriptionHtml", "parameters", "name", "historyId", "statusDetails", "status", "links", "fullName", "uuid", "description", "testCaseId", "stage", "labels", "stop", "steps", "rerunOf", "attachments"])
17:59:44 at [Source: (sun.nio.ch.ChannelInputStream); line: 1, column: 208] (through reference chain: io.qameta.allure.model.TestResult["testCaseName"])
М
М
М
М
plugins {
id 'java'
id "io.qameta.allure" version "2.9.6"
}
group 'ru.'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
compileTestJava {
options.encoding = 'UTF-8'
}
def allureVersion = "2.17.2",
slf4jVersion = "1.7.33",
junitVersion = "5.8.2"
allure {
report { version.set(allureVersion) }
adapter {
autoconfigure.set(true)
aspectjWeaver.set(true)
frameworks {
junit5 {
adapterVersion.set(allureVersion)
}
}
}
}
dependencies {
testImplementation(
"org.junit.jupiter:junit-jupiter-api:$junitVersion",
"com.codeborne:selenide:6.2.1",
"io.qameta.allure:allure-selenide:$allureVersion",
"io.qameta.allure:allure-attachments:$allureVersion"
)
testRuntimeOnly(
"org.slf4j:slf4j-simple:$slf4jVersion",
"org.slf4j:jul-to-slf4j:$slf4jVersion",
"org.slf4j:log4j-over-slf4j:$slf4jVersion",
"org.junit.jupiter:junit-jupiter-engine:$junitVersion")
}
test {
useJUnitPlatform()
testLogging {
events "PASSED", "FAILED", "SKIPPED", "STANDARD_OUT", "STANDARD_ERROR"
}
testLogging.showStandardStreams = true
}
TL
DL
PS
DL
A
R
A
R
АИ