1
0

Передача vrunner.json в syntax-check

This commit is contained in:
Nikita Gryzlov
2021-06-09 22:14:24 +03:00
parent 2819b31171
commit e0bc1e9493
4 changed files with 42 additions and 15 deletions

View File

@@ -30,7 +30,7 @@
},
"syntaxCheck": {
"groupErrorsByMetadata": true,
"pathToJUnitReport": "build/out/jUnit/syntax.xml",
"pathToJUnitReport": "./build/out/jUnit/syntax.xml",
"checkModes": [
"-ThinClient",
"-WebClient",
@@ -43,7 +43,8 @@
"-CheckUseModality",
"-CheckUseSynchronousCalls",
"-DistributiveModules"
]
],
"vrunnerSettings": "./tools/vrunner.json"
},
"resultsTransform": {
"removeSupport": false,

View File

@@ -118,7 +118,7 @@
"properties" : {
"pathToJUnitReport" : {
"type" : "string",
"description" : "Путь к файлу отчета jUnit"
"description" : "Путь к файлу отчета jUnit\n По умолчанию содержит значение \"./build/out/junitsyntax.xml\"\n "
},
"groupErrorsByMetadata" : {
"type" : "boolean",
@@ -130,6 +130,10 @@
"items" : {
"type" : "string"
}
},
"vrunnerSettings" : {
"type" : "string",
"description" : "Путь к конфигурационному файлу vanessa-runner.\n По умолчанию содержит значение \"./tools/vrunner.json\".\n "
}
}
},