Skip to content

Commit 1bde713

Browse files
authored
Merge pull request #63 from wardbox/fix/publish-exclude-integration-tests
Fix publish workflow to exclude integration tests
2 parents 8c3b92a + 9c0a5c3 commit 1bde713

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
Import-Module Pester
4242
4343
$config = New-PesterConfiguration
44-
$config.Run.Path = './Tests'
44+
# Only run unit tests, exclude integration tests (require API credentials)
45+
$config.Run.Path = './Tests/Spotishell.Tests.ps1'
4546
$config.Run.Exit = $true
4647
$config.Output.Verbosity = 'Detailed'
4748

0 commit comments

Comments
 (0)