Adjusted default actions #14 (#15)

* Added auto discovery fo files to monitor.

* Fixed scriptanalyzer rule

* Adjusted the parameter attributes
This commit is contained in:
Kevin Marquette
2017-02-13 00:28:27 -08:00
committed by GitHub
parent 3dcff2fa5d
commit ebc2c6ddbd
2 changed files with 22 additions and 5 deletions

View File

@@ -52,6 +52,10 @@ Task Test -Depends UnitTests {
# In Appveyor? Upload our tests! #Abstract this into a function?
If($ENV:BHBuildSystem -eq 'AppVeyor')
{
[xml]$content = Get-Content "$ProjectRoot\$TestFile"
$content.'test-results'.'test-suite'.type = "Powershell"
$content.Save("$ProjectRoot\$TestFile")
"Uploading $ProjectRoot\$TestFile to AppVeyor"
"JobID: $env:APPVEYOR_JOB_ID"
(New-Object 'System.Net.WebClient').UploadFile("https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path "$ProjectRoot\$TestFile"))