From ad02c948fa8a42dc79f59f4e2935c9cde142f54d Mon Sep 17 00:00:00 2001 From: mzwiessele Date: Mon, 19 Jun 2017 13:34:27 +0100 Subject: [PATCH] fix: appveyor not uploading to testpypi for now --- appveyor.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index adf00c4f..fe9d69e0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -72,16 +72,17 @@ deploy_script: - echo username = maxz >> %USERPROFILE%\\.pypirc - echo password = %pip_access% >> %USERPROFILE%\\.pypirc - ps: >- - if ($env:APPVEYOR_REPO_BRANCH -eq 'devel') { - twine upload --skip-existing -r test dist/* - } - elseif ($env:APPVEYOR_REPO_BRANCH -eq 'deploy') { + if ($env:APPVEYOR_REPO_BRANCH -eq 'deploy') { twine upload --skip-existing dist/* } else { echo not deploying on other branches } +# if ($env:APPVEYOR_REPO_BRANCH -eq 'devel') { +# twine upload --skip-existing -r test dist/* +# } # This is for testing the upload to testpypi, it causes a fail, so we will undo it here + # deploy: # - provider: GitHub # release: GPy-v$(gpy_version)