Skip to content

Commit 3b51ae7

Browse files
committed
Exclude newly introduced tests to check if they are causing the performance problems when the integration tests are run after pushing to the PR
1 parent ba4e83f commit 3b51ae7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Cake.Frosting.Tests/CakeHostTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ public void The_Version_Option_Should_Call_Version_Feature()
384384
Assert.Collection(fixture.Console.Messages, s => s.Equals("FakeVersion"));
385385
}
386386

387-
[Fact]
387+
[Fact(Skip = "Excluded to see if the performance implication of this test is causing the integration tests to break on push to PR")]
388388
public void Should_Pass_Cake_Runner_Argument_And_Value_To_Build_Script()
389389
{
390390
// Given

src/Cake.Tests/Unit/ProgramTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public async Task The_Info_Option_Should_Call_Info_Feature(params string[] args)
132132
feature.Received(1).Run(fixture.Console);
133133
}
134134

135-
[Fact]
135+
[Fact(Skip = "Excluded to see if the performance implication of this test is causing the integration tests to break on push to PR")]
136136
public async void Should_Pass_Cake_Runner_Argument_And_Value_To_Build_Script()
137137
{
138138
// Given

0 commit comments

Comments
 (0)