Skip to content

Commit 4da4555

Browse files
committed
Put back lines to disallow building and restoring (to resolve disk space issues on CI)
1 parent 7cc73a8 commit 4da4555

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build/Build.Tests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,9 @@ void RunIntegrationTests(string testFramework, string testRuntime, string filter
319319
.SetProjectFile(projectPath)
320320
.SetFramework(testFramework)
321321
.SetFilter(filter)
322-
.SetLoggers("console;verbosity=normal", "teamcity"))
322+
.SetLoggers("console;verbosity=normal", "teamcity")
323+
.SetNoBuild(true)
324+
.SetNoRestore(true))
323325
);
324326
}
325327
catch (Exception e)

0 commit comments

Comments
 (0)