Enable verbose xunit logs for CI tests

This commit is contained in:
Andrey Akinshin 2023-05-31 14:15:46 +02:00
Родитель 7c4241c5e1
Коммит fc74903734
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -120,7 +120,7 @@ public class BuildContext : FrostingContext
Framework = tfm,
NoBuild = true,
NoRestore = true,
Loggers = new[] { "trx", $"trx;LogFileName={logFile.FullPath}" }
Loggers = new[] { "trx", $"trx;LogFileName={logFile.FullPath}", "console;verbosity=detailed" }
};
// force the tool to not look for the .dll in platform-specific directory
settings.EnvironmentVariables["Platform"] = "";
@ -380,7 +380,8 @@ public class PackTask : FrostingTask<BuildContext>
{
public override bool ShouldRun(BuildContext context)
{
return context.IsOnAppVeyorAndBdnNightlyCiCd;
//return context.IsOnAppVeyorAndBdnNightlyCiCd;
return true;
}
public override void Run(BuildContext context)