From d3c6d274ed165a77bd4f1da06c2e3efcecdb3d29 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Sat, 20 Feb 2016 14:35:46 -0800 Subject: [PATCH] Fix capitalization of GitHub in dev module's name --- PowerShellGithubDev.psm1 => PowerShellGitHubDev.psm1 | 4 ++-- appveyor.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename PowerShellGithubDev.psm1 => PowerShellGitHubDev.psm1 (97%) diff --git a/PowerShellGithubDev.psm1 b/PowerShellGitHubDev.psm1 similarity index 97% rename from PowerShellGithubDev.psm1 rename to PowerShellGitHubDev.psm1 index 3091b2edfe..969dd2f239 100644 --- a/PowerShellGithubDev.psm1 +++ b/PowerShellGitHubDev.psm1 @@ -1,4 +1,4 @@ -function Start-DevPSGithub +function Start-DevPSGitHub { param( [switch]$ZapDisable, @@ -55,4 +55,4 @@ function Start-DevPSGithub ri env:COMPLUS_ZapDisable } } -} \ No newline at end of file +} diff --git a/appveyor.yml b/appveyor.yml index 9a53bddff3..d71cebd3ce 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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)