Skip to content

updated pester build for cross-platform support #38

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions .build/Pester/QualityTests.pester.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ task Quality_Tests {

if (!(Test-Path $PesterOutParentFolder)) {
Write-Verbose "CREATING Pester Results Output Folder $PesterOutParentFolder"
$null = mkdir $PesterOutParentFolder -Force
$null = New-Item -Path $PesterOutParentFolder -ItemType Directory -Force
}

if (!(Test-Path $TestResultFileParentFolder)) {
Write-Verbose "CREATING Test Results Output Folder $TestResultFileParentFolder"
$null = mkdir $TestResultFileParentFolder -Force
$null = New-Item -Path $TestResultFileParentFolder -ItemType Directory -Force
}

Push-Location $QualityTestPath
Expand Down
4 changes: 2 additions & 2 deletions .build/Pester/UnitTests.pester.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ task Run_Unit_Tests {

if (!(Test-Path $PesterOutParentFolder)) {
Write-Verbose "CREATING Pester Results Output Folder $PesterOutParentFolder"
$null = mkdir $PesterOutParentFolder -Force
$null = New-Item -Path $PesterOutParentFolder -ItemType Directory -Force
}

if (!(Test-Path $TestResultFileParentFolder)) {
Write-Verbose "CREATING Test Results Output Folder $TestResultFileParentFolder"
$null = mkdir $TestResultFileParentFolder -Force
$null = New-Item -Path $TestResultFileParentFolder -ItemType Directory -Force
}

Push-Location $UnitTestPath
Expand Down