Added auto discovery fo files to monitor.

This commit is contained in:
KevinMarquette
2017-02-12 00:21:59 -08:00
parent 3dcff2fa5d
commit fb8566919f
2 changed files with 19 additions and 4 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"))