Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed unnecessary entries #55

Merged
merged 13 commits into from
May 15, 2023
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Based on [style guidelines](https://dsccommunity.org/styleguidelines/localizatio
in the future.
- The HQRM tests was run twice in the pipeline, now they are run just once.
- Updated the README.md with new section and updated the links.
- Removed unnecessary entries in module manifest because of this [bug in PowerShell](https://github.com/PowerShell/PowerShell/issues/16750).

### Removed

Expand Down
6 changes: 3 additions & 3 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ BuildWorkflow:
- Build_NestedModules_ModuleBuilder
- Create_changelog_release_output
- Generate_Conceptual_Help
- Generate_Wiki_Content
#- Generate_Wiki_Content

pack:
- build
Expand All @@ -51,7 +51,7 @@ BuildWorkflow:
publish:
- publish_module_to_gallery
- Publish_Release_To_GitHub
- Publish_GitHub_Wiki_Content
#- Publish_GitHub_Wiki_Content



Expand All @@ -64,7 +64,7 @@ Pester:
ExcludeFromCodeCoverage:
- Modules/DscResource.Common
Script:
- tests/Unit
- tests
ExcludeTag:
Tag:
CodeCoverageThreshold: 25
Expand Down
8 changes: 0 additions & 8 deletions source/JeaDsc.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,10 @@

PowerShellVersion = '5.1'

NestedModules = @()

FunctionsToExport = @(
'ConvertTo-Expression'
)

CmdletsToExport = @()

VariablesToExport = @()

AliasesToExport = @()

DscResourcesToExport = @()

PrivateData = @{
Expand Down
1 change: 1 addition & 0 deletions tests/Integration/JeaRoleCapabilities.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ InModuleScope JeaDsc {
BeforeEach {
$class = [JeaRoleCapabilities]::New()
$class.Path = 'TestDrive:\ModuleFolder\RoleCapabilities\ExampleRole.psrc'
$class.VisibleCmdlets = 'Get-Command'
}

Context 'Testing Get method when Ensure is Present' {
Expand Down