Skip to content

Commit 274654f

Browse files
Remove labeler job from CI workflow and clean up integration tests
1 parent 7c3ae39 commit 274654f

File tree

2 files changed

+2
-120
lines changed

2 files changed

+2
-120
lines changed

.github/workflows/github-ci.yml

Lines changed: 0 additions & 116 deletions
This file was deleted.

tests/Integration/Module.Integration.Tests.ps1

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,8 @@ Describe 'PSScriptModule Integration Tests' -Tag 'Integration' {
5252

5353
# Discover public functions from source
5454
$publicFunctionsPath = Resolve-Path -Path (Join-Path -Path $PSScriptRoot -ChildPath '../../src/Public')
55-
if ($publicFunctionsPath -and (Test-Path $publicFunctionsPath)) {
56-
$publicFunctionFiles = Get-ChildItem -Path $publicFunctionsPath -Include '*.ps1' -Exclude '*.Tests.ps1' -Recurse |
57-
Select-Object -ExpandProperty BaseName
58-
}
55+
$publicFunctionFiles = Get-ChildItem -Path $publicFunctionsPath -Include '*.ps1' -Exclude '*.Tests.ps1' -Recurse |
56+
Select-Object -ExpandProperty BaseName
5957
}
6058

6159
It 'Should export at least one function' {

0 commit comments

Comments
 (0)