diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 08:56:01 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 08:56:01 -0400 |
commit | 568afce2f07670cec28a4338b6e203f9c5c9fa73 (patch) | |
tree | 65a6dc2d59db6321233329fa34649968409ce479 | |
parent | 995b3dd2a84e11fdba9703127ceb5bd8df5ebd38 (diff) | |
download | python-coveragepy-git-568afce2f07670cec28a4338b6e203f9c5c9fa73.tar.gz |
Try using build_script to make kits
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 41047475..2c7f4c06 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -108,14 +108,14 @@ install: # Install requirements. - "%CMD_IN_ENV% pip install -r ci/requirements.pip" -build: off +build_script: + - if NOT "%COVERAGE_COVERAGE%" == "yes" %CMD_IN_ENV% %PYTHON%\python setup.py bdist_wheel bdist_wininst test_script: - "%CMD_IN_ENV% %PYTHON%\\Scripts\\tox" after_test: - 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 artifacts: - path: "dist\\*" |