diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 20:55:45 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 20:55:45 -0400 |
commit | 5236f0709c15b2ba0527b5a42dd156bf3ae3a10b (patch) | |
tree | bac86e426e91cfe68c42e4260082dc1efc58df42 /appveyor.yml | |
parent | 1a74838f8a86c8ba75b84173738075193f5eac76 (diff) | |
download | python-coveragepy-git-5236f0709c15b2ba0527b5a42dd156bf3ae3a10b.tar.gz |
Name the dist artifacts with dist\*
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index aaa39736..dd2961c3 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 - - ps: Get-ChildItem dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + - ps: Get-ChildItem dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName dist\$_.Name } test_script: - "%CMD_IN_ENV% %PYTHON%\\Scripts\\tox" |