Skip to content

Commit

Permalink
ignore 2 tests on CI
Browse files Browse the repository at this point in the history
These tests are not intended to run on CI
  • Loading branch information
megahirt committed Jun 14, 2024
1 parent bb89bf5 commit 6706082
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/SolidGui.Tests/Export/ExportLiftTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -432,9 +432,13 @@ public void SemanticDomain_WithTwoDomains_ExportsTwoTraitUnderSense()
/// <summary>
/// this test is half-baked... if there's no english ldml on the machine, it won't work (e.g. on teamcity)
/// </summary>
[Test, Category("SkipOnTeamCity")]
[Test, Category("SkipOnCI")]
public void WritingSystems_WSFolderNotThere_CreatesItAndCopiesWritingSystemsToWritingSystemFolder()
{
if (Environment.GetEnvironmentVariable("GITHUB_ACTIONS") == "true")
{
Assert.Ignore("Test skipped on CI server.");
}
using (var e = new ExportTestScenario())
{
e.Input = @"\lx TestLexeme";
Expand All @@ -456,7 +460,7 @@ public void WritingSystems_WSFolderNotThere_CreatesItAndCopiesWritingSystemsToWr
/// <summary>
/// this test is half-baked... if there's no english ldml on the machine, it won't work (e.g. on teamcity)
/// </summary>
[Test, Category("SkipOnTeamCity")]
[Test, Category("SkipOnCI")]
public void WritingSystems_WSFolderAlreadyExists_CopiesWritingSystemsToWritingSystemFolder()
{
using (var e = new ExportTestScenario())
Expand Down

0 comments on commit 6706082

Please sign in to comment.