Fixed priting of test project
This commit is contained in:
		
					parent
					
						
							
								9eb6bdec2a
							
						
					
				
			
			
				commit
				
					
						c980d0a8ed
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -179,7 +179,7 @@ namespace Microsoft.DotNet.Cli.Build
 | 
				
			||||||
            var failingTests = new List<string>();
 | 
					            var failingTests = new List<string>();
 | 
				
			||||||
            foreach (var project in TestProjects)
 | 
					            foreach (var project in TestProjects)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                c.Info("Running tests in: {project}");
 | 
					                c.Info($"Running tests in: {project}");
 | 
				
			||||||
                var result = dotnet.Test("-xml", $"{project}-testResults.xml", "-notrait", "category=failing")
 | 
					                var result = dotnet.Test("-xml", $"{project}-testResults.xml", "-notrait", "category=failing")
 | 
				
			||||||
                    .WorkingDirectory(Path.Combine(c.BuildContext.BuildDirectory, "test", project))
 | 
					                    .WorkingDirectory(Path.Combine(c.BuildContext.BuildDirectory, "test", project))
 | 
				
			||||||
                    .Environment(vsvars)
 | 
					                    .Environment(vsvars)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue