Fix capitalization of GitHub in dev module's name

This commit is contained in:
Andrew Schwartzmeyer 2016-02-20 14:35:46 -08:00
parent c8891bb5a0
commit d3c6d274ed
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
function Start-DevPSGithub
function Start-DevPSGitHub
{
param(
[switch]$ZapDisable,
@ -55,4 +55,4 @@ function Start-DevPSGithub
ri env:COMPLUS_ZapDisable
}
}
}
}

View file

@ -34,9 +34,9 @@ test_script:
# For now we don't fail the build if these tests failed
#
# FullCLR
Import-Module .\PowerShellGithubDev.psm1
Import-Module .\PowerShellGitHubDev.psm1
$testResultsFile = ".\TestsResults.FullCLR.xml"
Start-DevPSGithub -binDir $pwd\binFull -NoNewWindow -ArgumentList '-command', "Import-Module .\src\Microsoft.PowerShell.Linux.Host\Modules\Pester; Invoke-Pester test/fullCLR -OutputFormat NUnitXml -OutputFile $testResultsFile"
Start-DevPSGitHub -binDir $pwd\binFull -NoNewWindow -ArgumentList '-command', "Import-Module .\src\Microsoft.PowerShell.Linux.Host\Modules\Pester; Invoke-Pester test/fullCLR -OutputFormat NUnitXml -OutputFile $testResultsFile"
(New-Object 'System.Net.WebClient').UploadFile("https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $testResultsFile))
# we want to fail the build, if these tests failed
$x = [xml](cat -raw .\TestsResults.FullCLR.xml)