Skip to content

Commit

Permalink
Speed up some integration tests
Browse files Browse the repository at this point in the history
Currently, WhenDisableLogFileWeDontWriteToFile and EnsureLogFileIsWritten
take more than 3 minutes on appveyor that leads to build timeouts.
  • Loading branch information
AndreyAkinshin committed Oct 30, 2019
1 parent d695052 commit e23755a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void WhenUserAsksToPrintAListAndProvidesAFilterWePrintFilteredList()
public void WhenDisableLogFileWeDontWriteToFile()
{
var logger = new OutputLogger(Output);
var config = ManualConfig.CreateEmpty().With(logger).With(ConfigOptions.DisableLogFile);
var config = ManualConfig.CreateEmpty().With(logger).With(ConfigOptions.DisableLogFile).With(Job.Dry);
string logFilePath = null;
try
{
Expand All @@ -156,7 +156,7 @@ public void WhenDisableLogFileWeDontWriteToFile()
public void EnsureLogFileIsWritten()
{
var logger = new OutputLogger(Output);
var config = ManualConfig.CreateEmpty().With(logger);
var config = ManualConfig.CreateEmpty().With(logger).With(Job.Dry);
string logFilePath = null;
try
{
Expand Down

0 comments on commit e23755a

Please sign in to comment.