mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-25 05:58:35 +01:00
use higher verbosity for ci tests
This commit is contained in:
parent
aca1ece870
commit
6c4d241d91
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,8 @@ Task("Build").IsDependentOn("Prepare").Does(() =>{
|
||||||
Task("Test").IsDependentOn("Build").Does(() => {
|
Task("Test").IsDependentOn("Build").Does(() => {
|
||||||
var settings = new DotNetTestSettings {
|
var settings = new DotNetTestSettings {
|
||||||
Configuration = config,
|
Configuration = config,
|
||||||
Collectors = {"XPlat Code Coverage"}
|
Collectors = {"XPlat Code Coverage"},
|
||||||
|
Loggers = {"console;verbosity=normal"}
|
||||||
};
|
};
|
||||||
DotNetTest("MLEM.sln", settings);
|
DotNetTest("MLEM.sln", settings);
|
||||||
DotNetTest("MLEM.FNA.sln", settings);
|
DotNetTest("MLEM.FNA.sln", settings);
|
||||||
|
|
Loading…
Reference in a new issue