We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea86e02 commit 0624740Copy full SHA for 0624740
1 file changed
.appveyor.yml
@@ -23,5 +23,12 @@ test: off
23
test_script:
24
- pip install -r requirements-test.txt
25
- pip install xmlsec --only-binary=xmlsec --no-index --find-links=dist
26
- - pytest -v --color=yes
+ - pytest -v --color=yes --junitxml=unittests.xml
27
- ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
28
+
29
+on_finish:
30
+ - ps: |
31
+ # archive test results at AppVeyor
32
+ $wc = New-Object 'System.Net.WebClient'
33
+ $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\unittests.xml))
34
+ $LastExitCode = 0
0 commit comments