Skip to content

Commit a1ba5cf

Browse files
committed
ci: remove test-related component
1 parent 8f16384 commit a1ba5cf

File tree

3 files changed

+2
-34
lines changed

3 files changed

+2
-34
lines changed

.nuke/build.schema.json

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,10 @@
3333
"Feature",
3434
"Format",
3535
"Hotfix",
36-
"IntegrationTests",
37-
"MutationTests",
3836
"Pack",
3937
"Publish",
4038
"Release",
41-
"ReportIntegrationTestCoverage",
42-
"ReportUnitTestCoverage",
43-
"Restore",
44-
"UnitTests"
39+
"Restore"
4540
]
4641
},
4742
"Verbosity": {
@@ -123,11 +118,6 @@
123118
"type": "string",
124119
"description": "The name of the chore branch prefix"
125120
},
126-
"CodecovToken": {
127-
"type": "string",
128-
"description": "The API key used to push code coverage to CodeCov",
129-
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
130-
},
131121
"ConfigName": {
132122
"type": "string",
133123
"description": "Defines the name of the configuration to use to publish packages"
@@ -201,11 +191,6 @@
201191
"type": "string",
202192
"description": "Path to a solution file that is automatically loaded"
203193
},
204-
"StrykerDashboardApiKey": {
205-
"type": "string",
206-
"description": "API KEY used to submit mutation report to a stryker dashboard",
207-
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
208-
},
209194
"Title": {
210195
"type": "string",
211196
"description": "Title that will be used when creating a PR"

build/Pipeline.cs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,6 @@ public class Pipeline : EnhancedNukeBuild,
6262
IRestore,
6363
IDotnetFormat,
6464
ICompile,
65-
IUnitTest,
66-
IMutationTest,
67-
IIntegrationTest,
68-
IReportUnitTestCoverage,
69-
IReportIntegrationTestCoverage,
7065
IPushNugetPackages,
7166
ICreateGithubRelease,
7267
IGitFlowWithPullRequest
@@ -144,16 +139,4 @@ ValueTask IGitFlow.FinishRelease()
144139

145140
///<inheritdoc/>
146141
bool IDotnetFormat.VerifyNoChanges => IsLocalBuild;
147-
148-
/// <inheritdoc />
149-
IEnumerable<Project> IUnitTest.UnitTestsProjects => [];
150-
151-
/// <inheritdoc />
152-
IEnumerable<Project> IIntegrationTest.IntegrationTestsProjects => [];
153-
154-
/// <inheritdoc />
155-
IEnumerable<MutationProjectConfiguration> IMutationTest.MutationTestsProjects => [];
156-
157-
/// <inheritdoc />
158-
bool IReportCoverage.ReportToCodeCov => false;
159142
}

src/Candoumbe.Pipelines/Components/GitHub/IPullRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public interface IPullRequest : IHaveGitHubRepository
2121
string Description => TryGetValue(() => Description) ?? this.As<IHaveChangeLog>()?.ReleaseNotes;
2222

2323
/// <summary>
24-
/// Should the local branch be deleted after the pull request was created successfully ?
24+
/// Should the local branch be deleted after the pull request was created successfully?
2525
/// </summary>
2626
[Parameter("Should the local branch be deleted after the pull request was created successfully ?")]
2727
bool DeleteLocalOnSuccess => TryGetValue<bool?>(() => DeleteLocalOnSuccess) ?? false;

0 commit comments

Comments
 (0)