From 19a5d2084c486da83b0f3092d0bcfd6a0532ed54 Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Thu, 7 Apr 2016 23:06:05 +0300 Subject: [PATCH] appveyor.yml Forgot artifact upload command --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index ab459132f..245595f11 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -25,6 +25,8 @@ build_script: - cd c:\pillow - dir dist\*.egg - '%PYTHON%\python.exe selftest.py --installed' +on_success: +- ps: Get-ChildItem .\dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } test_script: - cd c:\pillow - '%PYTHON%\Scripts\pip.exe install nose'