@@ -13,7 +13,7 @@ public GivenDotnetTestBuildsAndRunsTests(ITestOutputHelper log) : base(log)
13
13
14
14
[ InlineData ( TestingConstants . Debug ) ]
15
15
[ InlineData ( TestingConstants . Release ) ]
16
- [ Theory ]
16
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
17
17
public void RunTestProjectWithNoTests_ShouldReturnExitCodeGenericFailure ( string configuration )
18
18
{
19
19
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "TestProjectSolution" , Guid . NewGuid ( ) . ToString ( ) )
@@ -39,7 +39,7 @@ public void RunTestProjectWithNoTests_ShouldReturnExitCodeGenericFailure(string
39
39
40
40
[ InlineData ( TestingConstants . Debug ) ]
41
41
[ InlineData ( TestingConstants . Release ) ]
42
- [ Theory ]
42
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
43
43
public void RunMultipleTestProjectsWithNoTests_ShouldReturnExitCodeGenericFailure ( string configuration )
44
44
{
45
45
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "MultipleTestProjectSolution" , Guid . NewGuid ( ) . ToString ( ) )
@@ -65,7 +65,7 @@ public void RunMultipleTestProjectsWithNoTests_ShouldReturnExitCodeGenericFailur
65
65
66
66
[ InlineData ( TestingConstants . Debug ) ]
67
67
[ InlineData ( TestingConstants . Release ) ]
68
- [ Theory ]
68
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
69
69
public void RunTestProjectWithTests_ShouldReturnExitCodeSuccess ( string configuration )
70
70
{
71
71
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "TestProjectWithTests" , Guid . NewGuid ( ) . ToString ( ) )
@@ -92,7 +92,7 @@ public void RunTestProjectWithTests_ShouldReturnExitCodeSuccess(string configura
92
92
93
93
[ InlineData ( TestingConstants . Debug ) ]
94
94
[ InlineData ( TestingConstants . Release ) ]
95
- [ Theory ]
95
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
96
96
public void RunMultipleTestProjectsWithFailingTests_ShouldReturnExitCodeGenericFailure ( string configuration )
97
97
{
98
98
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "MultiTestProjectSolutionWithTests" , Guid . NewGuid ( ) . ToString ( ) )
@@ -118,7 +118,7 @@ public void RunMultipleTestProjectsWithFailingTests_ShouldReturnExitCodeGenericF
118
118
119
119
[ InlineData ( TestingConstants . Debug ) ]
120
120
[ InlineData ( TestingConstants . Release ) ]
121
- [ Theory ]
121
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
122
122
public void RunMultipleTestProjectsWithDifferentFailures_ShouldReturnExitCodeGenericFailure ( string configuration )
123
123
{
124
124
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "MultiTestProjectSolutionWithDifferentFailures" , Guid . NewGuid ( ) . ToString ( ) )
@@ -149,7 +149,7 @@ public void RunMultipleTestProjectsWithDifferentFailures_ShouldReturnExitCodeGen
149
149
150
150
[ InlineData ( TestingConstants . Debug ) ]
151
151
[ InlineData ( TestingConstants . Release ) ]
152
- [ Theory ]
152
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
153
153
public void RunTestProjectsWithHybridModeTestRunners_ShouldReturnExitCodeGenericFailure ( string configuration )
154
154
{
155
155
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "HybridTestRunnerTestProjects" , Guid . NewGuid ( ) . ToString ( ) )
@@ -170,7 +170,7 @@ public void RunTestProjectsWithHybridModeTestRunners_ShouldReturnExitCodeGeneric
170
170
171
171
[ InlineData ( TestingConstants . Debug ) ]
172
172
[ InlineData ( TestingConstants . Release ) ]
173
- [ Theory ]
173
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
174
174
public void RunOnEmptyFolder_ShouldReturnExitCodeGenericFailure ( string configuration )
175
175
{
176
176
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "EmptyFolder" , Guid . NewGuid ( ) . ToString ( ) )
@@ -191,7 +191,7 @@ public void RunOnEmptyFolder_ShouldReturnExitCodeGenericFailure(string configura
191
191
192
192
[ InlineData ( TestingConstants . Debug ) ]
193
193
[ InlineData ( TestingConstants . Release ) ]
194
- [ Theory ]
194
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
195
195
public void RunOnMultipleProjectFoldersWithoutSolutionFile_ShouldReturnExitCodeGenericFailure ( string configuration )
196
196
{
197
197
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "MultipleTestProjectsWithoutSolution" , Guid . NewGuid ( ) . ToString ( ) )
@@ -212,7 +212,7 @@ public void RunOnMultipleProjectFoldersWithoutSolutionFile_ShouldReturnExitCodeG
212
212
213
213
[ InlineData ( TestingConstants . Debug ) ]
214
214
[ InlineData ( TestingConstants . Release ) ]
215
- [ Theory ]
215
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
216
216
public void RunOnProjectWithSolutionFile_ShouldReturnExitCodeGenericFailure ( string configuration )
217
217
{
218
218
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "TestProjectFileAndSolutionFile" , Guid . NewGuid ( ) . ToString ( ) )
@@ -233,7 +233,7 @@ public void RunOnProjectWithSolutionFile_ShouldReturnExitCodeGenericFailure(stri
233
233
234
234
[ InlineData ( TestingConstants . Debug ) ]
235
235
[ InlineData ( TestingConstants . Release ) ]
236
- [ Theory ]
236
+ [ Theory ( Skip = "https://github.com/dotnet/sdk/issues/46923" ) ]
237
237
public void RunOnProjectWithClassLibrary_ShouldReturnExitCodeSuccess ( string configuration )
238
238
{
239
239
TestAsset testInstance = _testAssetsManager . CopyTestAsset ( "TestProjectWithClassLibrary" , Guid . NewGuid ( ) . ToString ( ) )
0 commit comments