Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Jul 3, 2024
1 parent 21fc540 commit 917f88f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/Nuke.Common.Tests/CI/ConfigurationGenerationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using JetBrains.Annotations;
using Nuke.Common.CI;
using Nuke.Common.CI.AppVeyor;
using Nuke.Common.CI.AzurePipelines;
Expand Down Expand Up @@ -49,6 +50,7 @@ public static IEnumerable<object[]> GetAttributes()
return TestBuild.GetAttributes().Select(x => new object[] { x.TestName, x.Generator });
}

[UsedImplicitly(ImplicitUseTargetFlags.WithMembers)]
[AppVeyorSecret("GitHubToken", "encrypted-yaml")]
[TeamCityToken("GitHubToken", "74928d76-46e8-45cc-ad22-6438915ac070")]
public class TestBuild : NukeBuild
Expand Down Expand Up @@ -158,7 +160,9 @@ public class TestBuild : NukeBuild
Lfs = true,
FetchDepth = 2,
TimeoutMinutes = 30,
JobConcurrencyCancelInProgress = true
JobConcurrencyCancelInProgress = true,
EnvironmentName = "environment-name",
EnvironmentUrl = "environment-url"
}
);

Expand Down

0 comments on commit 917f88f

Please sign in to comment.