diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 08:41:42 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 08:41:42 -0400 |
commit | 266df1992d61e86a61d982bff208c69e78e4ee8b (patch) | |
tree | 353044cc354669f90e8ad8eaf1756d69059e6561 | |
parent | d739c7fd833f02de036f5eaca1a98b7dfa20c6df (diff) | |
download | python-coveragepy-git-266df1992d61e86a61d982bff208c69e78e4ee8b.tar.gz |
Try on_finish instead of after_test for building artifacts
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 41047475..ef7ee4a0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -113,7 +113,7 @@ build: off test_script: - "%CMD_IN_ENV% %PYTHON%\\Scripts\\tox" -after_test: +on_finish: - if "%COVERAGE_COVERAGE%" == "yes" 7z a metacov-win-%TOXENV%.zip %APPVEYOR_BUILD_FOLDER%\.metacov* - if NOT "%COVERAGE_COVERAGE%" == "yes" %CMD_IN_ENV% %PYTHON%\python setup.py bdist_wheel bdist_wininst |