Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

update tests #469

Merged
merged 7 commits into from
May 1, 2019
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Tests/PSGetPublishModule.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ Describe PowerShell.PSGet.PublishModuleTests -Tags 'BVT','InnerLoop' {
finally {
Install-NuGetBinaries
}
} -Skip:$($PSEdition -eq 'Core')
} -Skip:$($PSEdition -eq 'Core' -or $env:APPVEYOR_TEST_PASS -eq 'True')

# Purpose: Validate that Publish-Module prompts to install NuGet.exe if NuGet.exe file is not found
#
Expand Down Expand Up @@ -1234,7 +1234,7 @@ Describe PowerShell.PSGet.PublishModuleTests -Tags 'BVT','InnerLoop' {
finally {
Install-NuGetBinaries
}
} -Skip:$($PSEdition -eq 'Core')
} -Skip:$($PSEdition -eq 'Core' -or $env:APPVEYOR_TEST_PASS -eq 'True')

# Purpose: Validate that Publish-Module prompts to upgrade NuGet.exe if local NuGet.exe file is less than minimum required version
#
Expand Down Expand Up @@ -1300,7 +1300,7 @@ Describe PowerShell.PSGet.PublishModuleTests -Tags 'BVT','InnerLoop' {
finally {
Install-NuGetBinaries
}
} -Skip:$($PSEdition -eq 'Core')
} -Skip:$($PSEdition -eq 'Core' -or $env:APPVEYOR_TEST_PASS -eq 'True')

# Purpose: Validate that Publish-Module prompts to install NuGet.exe if file not found
#
Expand Down Expand Up @@ -1357,7 +1357,7 @@ Describe PowerShell.PSGet.PublishModuleTests -Tags 'BVT','InnerLoop' {
finally {
Install-NuGetBinaries
}
} -Skip:$($PSEdition -eq 'Core')
} -Skip:$($PSEdition -eq 'Core' -or $env:APPVEYOR_TEST_PASS -eq 'True')
}

Describe PowerShell.PSGet.PublishModuleTests.P1 -Tags 'P1','OuterLoop' {
Expand Down
Loading