Skip to content

Commit 529a4db

Browse files
Revert "Try to enable test on build server"
This reverts commit e8d5f46.
1 parent e8d5f46 commit 529a4db

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Tests/CSharp/MultiFileSolutionAndProjectTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ public MultiFileSolutionAndProjectTests(MultiFileTestFixture multiFileTestFixtur
1717
_multiFileTestFixture = multiFileTestFixture;
1818
}
1919

20-
[Fact] /* enable for executing locally */
21-
//[Fact(Skip = "Doesn't work on Github actions agent")] /* disable for executing locally */
20+
//[Fact] /* enable for executing locally */
21+
[Fact(Skip = "Doesn't work on Github actions agent")] /* disable for executing locally */
2222
public async Task ConvertWholeSolutionAsync()
2323
{
2424

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

28-
[Fact] /* enable for executing locally */
29-
//[Fact(Skip = "Doesn't work on Github actions agent")] /* disable for executing locally */
28+
//[Fact] /* enable for executing locally */
29+
[Fact(Skip = "Doesn't work on Github actions agent")] /* disable for executing locally */
3030
public async Task ConvertVbLibraryOnlyAsync()
3131
{
3232
await _multiFileTestFixture.ConvertProjectsWhereAsync(p => p.Name == "VbLibrary", Language.CS);

Tests/VB/MultiFileSolutionAndProjectTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ public MultiFileSolutionAndProjectTests(MultiFileTestFixture multiFileTestFixtur
1717
_multiFileTestFixture = multiFileTestFixture;
1818
}
1919

20-
[Fact] /* enable for executing locally */
21-
//[Fact(Skip = "Doesn't work on Github actions agent")] /* disable for executing locally */
20+
//[Fact] /* enable for executing locally */
21+
[Fact(Skip = "Doesn't work on Github actions agent")] /* disable for executing locally */
2222
public async Task ConvertWholeSolutionAsync()
2323
{
2424
await _multiFileTestFixture.ConvertProjectsWhereAsync(p => true, Language.VB);
2525
}
2626

27-
[Fact] /* enable for executing locally */
28-
//[Fact(Skip = "Doesn't work on Github actions agent")] /* disable for executing locally */
27+
//[Fact] /* enable for executing locally */
28+
[Fact(Skip = "Doesn't work on Github actions agent")] /* disable for executing locally */
2929
public async Task ConvertCSharpConsoleAppOnlyAsync()
3030
{
3131
await _multiFileTestFixture.ConvertProjectsWhereAsync(p => p.Name == "CSharpConsoleApp", Language.VB);

0 commit comments

Comments
 (0)