Skip to content

Commit 4f7da6b

Browse files
Skip these until I can figure out which SDKs to install in CI
1 parent 18720f5 commit 4f7da6b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Tests/CSharp/MultiFileSolutionAndProjectTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ public MultiFileSolutionAndProjectTests(MultiFileTestFixture multiFileTestFixtur
1818
_multiFileTestFixture = multiFileTestFixture;
1919
}
2020

21-
[Fact]
21+
[Fact(Skip = "CI system cannot run this at the moment due to installed SDK versions")]
2222
public async Task ConvertWholeSolutionAsync()
2323
{
2424

2525
await _multiFileTestFixture.ConvertProjectsWhereAsync(p => true, Language.CS);
2626
}
2727

28-
[Fact]
28+
[Fact(Skip= "CI system cannot run this at the moment due to installed SDK versions")]
2929
public async Task ConvertVbLibraryOnlyAsync()
3030
{
3131
await _multiFileTestFixture.ConvertProjectsWhereAsync(p => p.Name == "VbLibrary", Language.CS);

Tests/VB/MultiFileSolutionAndProjectTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ public MultiFileSolutionAndProjectTests(MultiFileTestFixture multiFileTestFixtur
1818
_multiFileTestFixture = multiFileTestFixture;
1919
}
2020

21-
[Fact] /* enable for executing locally */
21+
[Fact(Skip = "CI system cannot run this at the moment due to installed SDK versions")]
2222
public async Task ConvertWholeSolutionAsync()
2323
{
2424
//the `CSharpRefReturn` project is excluded because it has ref return properties which are not supported in VB
2525
await _multiFileTestFixture.ConvertProjectsWhereAsync(p => p.Name != "CSharpRefReturn", Language.VB);
2626
}
2727

28-
[Fact] /* enable for executing locally */
28+
[Fact(Skip = "CI system cannot run this at the moment due to installed SDK versions")]
2929
public async Task ConvertCSharpConsoleAppOnlyAsync()
3030
{
3131
await _multiFileTestFixture.ConvertProjectsWhereAsync(p => p.Name == "CSharpConsoleApp", Language.VB);

0 commit comments

Comments
 (0)