diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-07 07:53:26 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-07 07:53:26 -0400 |
commit | ba8edf61e30ce3fc5ce3508fbb86bf9778594a4e (patch) | |
tree | 6b17b9e5d00681d9358712f17e7c7e047ca73aca /appveyor.yml | |
parent | e745a5ee076f49d47759539be7eaef88d96435d5 (diff) | |
download | python-coveragepy-git-ba8edf61e30ce3fc5ce3508fbb86bf9778594a4e.tar.gz |
Don't try to upload dist/* if dist doesn't exist
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index c275f4f8..90df51af 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -115,8 +115,11 @@ install: - "%CMD_IN_ENV% pip install -r ci/requirements.pip" build_script: + # If not a metacov job, then build wheels and .exe installers. - if NOT "%COVERAGE_COVERAGE%" == "yes" %CMD_IN_ENV% %PYTHON%\python setup.py bdist_wheel bdist_wininst - - ps: Get-ChildItem dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName ('dist\' + $_.Name) } + + # Push everything in dist\ as an artifact. + - ps: if ( Test-Path 'dist' -PathType Container ) { Get-ChildItem dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName ('dist\' + $_.Name) } } test_script: - "%CMD_IN_ENV% %PYTHON%\\Scripts\\tox" |