File tree 1 file changed +3
-1
lines changed
core/src/main/kotlin/com/malinskiy/marathon/report/allure
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ class AllureReporter(
59
59
params.forEach {
60
60
builder.put(it.key, it.value)
61
61
}
62
+ builder.put(" platform" , " Android" )
62
63
63
64
allureEnvironmentWriter(
64
65
builder.build(), outputDirectory.absolutePath + File .separator
@@ -139,7 +140,8 @@ class AllureReporter(
139
140
test.findValue<String >(Description ::class .java.canonicalName)?.let { allureTestResult.setDescription(it) }
140
141
test.findValue<String >(Issue ::class .java.canonicalName)?.let { allureTestResult.links.add(ResultsUtils .createIssueLink(it)) }
141
142
test.findValue<String >(TmsLink ::class .java.canonicalName)?.let { allureTestResult.links.add(ResultsUtils .createTmsLink(it)) }
142
-
143
+ allureTestResult.labels.add(ResultsUtils .createLabel(" layer" , " UI" ))
144
+ allureTestResult.labels.add(ResultsUtils .createLabel(" platform" , " Android" ))
143
145
allureTestResult.labels.addAll(test.getOptionalLabels())
144
146
145
147
return allureTestResult
You can’t perform that action at this time.
0 commit comments