Skip to content

Commit

Permalink
Added skips for graphics related tests to avoid confusion and give ad…
Browse files Browse the repository at this point in the history
…ditional info for why they fail info
  • Loading branch information
dloe committed Jul 16, 2024
1 parent 125d491 commit d598082
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ public TestPrecompiledSpriteFont()
/// <summary>
/// Run the test
/// </summary>
[Fact]
[Fact(Skip = "Only run when working on graphic related changes and tests, otherwise results are results are not deterministic and inconsistent between hardware. " +
"TODO: Remove this skip when we get teamcity agent functional again.")]
public void RunTestPrecompiledSpriteFont()
{
RunGameTest(new TestPrecompiledSpriteFont());
Expand Down
3 changes: 2 additions & 1 deletion sources/engine/Stride.Graphics.Tests/TestSprite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ private void DrawSprites()
/// <summary>
/// Run the test
/// </summary>
[Fact]
[Fact(Skip = "Only run when working on graphic related changes and tests, otherwise results are results are not deterministic and inconsistent between hardware. " +
"TODO: Remove this skip when we get teamcity agent functional again.")]
public void RunTestSprite()
{
RunGameTest(new TestSprite());
Expand Down
3 changes: 2 additions & 1 deletion sources/engine/Stride.Graphics.Tests/TestSpriteBatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ private Rectangle GetSphereAnimation(float time)
/// <summary>
/// Run the test
/// </summary>
[Fact]
[Fact(Skip = "Only run when working on graphic related changes and tests, otherwise results are results are not deterministic and inconsistent between hardware. " +
"TODO: Remove this skip when we get teamcity agent functional again.")]
public void RunTestSpriteBatch()
{
RunGameTest(new TestSpriteBatch());
Expand Down
3 changes: 2 additions & 1 deletion sources/engine/Stride.Graphics.Tests/TestStaticSpriteFont.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ public TestStaticSpriteFont()
/// <summary>
/// Run the test
/// </summary>
[Fact]
[Fact(Skip = "Only run when working on graphic related changes and tests, otherwise results are results are not deterministic and inconsistent between hardware. " +
"TODO: Remove this skip when we get teamcity agent functional again.")]
public void RunTestStaticSpriteFont()
{
RunGameTest(new TestStaticSpriteFont());
Expand Down

0 comments on commit d598082

Please sign in to comment.