Skip to content

Commit

Permalink
Skip these until I can figure out which SDKs to install in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamTheCoder committed Sep 29, 2024
1 parent 18720f5 commit 4f7da6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Tests/CSharp/MultiFileSolutionAndProjectTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ public MultiFileSolutionAndProjectTests(MultiFileTestFixture multiFileTestFixtur
_multiFileTestFixture = multiFileTestFixture;
}

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

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

[Fact]
[Fact(Skip= "CI system cannot run this at the moment due to installed SDK versions")]
public async Task ConvertVbLibraryOnlyAsync()
{
await _multiFileTestFixture.ConvertProjectsWhereAsync(p => p.Name == "VbLibrary", Language.CS);
Expand Down
4 changes: 2 additions & 2 deletions Tests/VB/MultiFileSolutionAndProjectTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ public MultiFileSolutionAndProjectTests(MultiFileTestFixture multiFileTestFixtur
_multiFileTestFixture = multiFileTestFixture;
}

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

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

0 comments on commit 4f7da6b

Please sign in to comment.