diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 20:48:05 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 20:48:05 -0400 |
commit | 1a74838f8a86c8ba75b84173738075193f5eac76 (patch) | |
tree | 27889154b700f5b23ec4db1c7eb3c1093841186b | |
parent | 7c63ffd4e4ecc57fa706e13a83617c4203e3f818 (diff) | |
download | python-coveragepy-git-1a74838f8a86c8ba75b84173738075193f5eac76.tar.gz |
Push the contents of dist as artifacts
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 0293628a..aaa39736 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -110,7 +110,7 @@ install: build_script: - if NOT "%COVERAGE_COVERAGE%" == "yes" %CMD_IN_ENV% %PYTHON%\python setup.py bdist_wheel bdist_wininst - - if NOT "%COVERAGE_COVERAGE%" == "yes" appveyor PushArtifact dist + - ps: Get-ChildItem dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } test_script: - "%CMD_IN_ENV% %PYTHON%\\Scripts\\tox" |