summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-07-11 18:59:38 -0400
committerJason R. Coombs <jaraco@jaraco.com>2022-07-11 18:59:38 -0400
commit0a86235c64db3cc417944493e65f6294f5f781c6 (patch)
treecd7024cb9b8cb1ca8df0da5bece531d6c3719ed9
parent8a3a10798d40b5e026ec87a4190f3a7e96cfc492 (diff)
downloadcherrypy-git-0a86235c64db3cc417944493e65f6294f5f781c6.tar.gz
Remove appveyor config
-rw-r--r--.appveyor.yml48
1 files changed, 0 insertions, 48 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
deleted file mode 100644
index 08d7ba84..00000000
--- a/.appveyor.yml
+++ /dev/null
@@ -1,48 +0,0 @@
-environment:
- matrix:
- - PYTHON: "C:\\Python37-x64"
- - PYTHON: "C:\\Python36-x64"
-
-init:
-- "chcp 65001"
-- ps: >-
- if($env:APPVEYOR_RDP_DEBUG -eq 'True') {
- iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
- }
-
-install:
-# symlink python from a directory with a space
-- "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
-- "SET PYTHON=\"C:\\Program Files\\Python\""
-- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
-- "python -m pip install tox"
-- "python -m tox --notest"
-
-
-before_build:
-- "python -m pip install wheel"
-
-build_script:
-- python -m setup bdist_wheel
-
-test_script:
-- tox
-
-on_finish:
-- ps: >-
- if($env:APPVEYOR_RDP_DEBUG -eq 'True') {
- $blockRdp = $true
- iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
- }
-- ps: |
- $wc = New-Object 'System.Net.WebClient'
- $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\.test-results\pytest\results.xml))
-
-#deploy_script:
-#- ps: >-
-# if($env:appveyor_repo_tag -eq 'True') {
-# Invoke-Expression "python -m twine upload dist/* --username $env:PYPI_USERNAME --password $env:PYPI_PASSWORD"
-# }
-
-artifacts:
-- path: dist\*