Skip to content

Commit

Permalink
Remove AppVeyor (#7564)
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg authored Jan 7, 2020
2 parents 52309f9 + 927ea8b commit 9e910aa
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 76 deletions.
69 changes: 0 additions & 69 deletions .appveyor.yml

This file was deleted.

11 changes: 10 additions & 1 deletion .azure-pipelines/jobs/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,27 @@ jobs:
Python27-x86:
python.version: '2.7'
python.architecture: x86
Python27-x64:
python.version: '2.7'
python.architecture: x64
useVenv: true
Python35-x64:
python.version: '3.5'
python.architecture: x64
Python36-x64:
python.version: '3.6'
python.architecture: x64
useVenv: true
Python37-x64:
python.version: '3.7'
python.architecture: x64
maxParallel: 3
maxParallel: 5

steps:
- template: ../steps/run-tests-windows.yml
parameters:
runIntegrationTests: true
useVenv: '$(useVenv)'

- job: Test_Secondary
displayName: Test Secondary
Expand Down
6 changes: 5 additions & 1 deletion .azure-pipelines/steps/run-tests-windows.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
parameters:
runIntegrationTests:
useVenv: false

steps:
- task: UsePythonVersion@0
Expand Down Expand Up @@ -43,8 +44,11 @@ steps:
# https://bugs.python.org/issue18199
$env:TEMP = "R:\Temp"
tox -e py -- -m integration -n auto --duration=5 --junit-xml=junit/integration-test.xml
tox -e py -- $env:USE_VENV_ARG -m integration -n auto --duration=5 --junit-xml=junit/integration-test.xml
displayName: Tox run integration tests
env:
${{ if eq(parameters.useVenv, 'true') }}:
USE_VENV_ARG: "--use-venv"
- task: PublishTestResults@2
displayName: Publish Test Results
Expand Down
8 changes: 3 additions & 5 deletions docs/html/development/ci.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,14 @@ interpreters.
Services
========

pip test suite and checks are distributed on four different platforms that
pip test suite and checks are distributed on three different platforms that
provides free executors for open source packages:

- `Travis CI`_ (Used for Linux)
- `Appveyor CI`_ (Windows only)
- `Azure DevOps CI`_ (Linux, MacOS & Windows tests)
- `GitHub Actions`_ (Linux, MacOS & Windows tests)

.. _`Travis CI`: https://travis-ci.org/
.. _`Appveyor CI`: https://www.appveyor.com/
.. _`Azure DevOps CI`: https://azure.microsoft.com/en-us/services/devops/
.. _`GitHub Actions`: https://github.com/features/actions

Expand Down Expand Up @@ -107,11 +105,11 @@ Actual testing
| | +-------+---------------+-----------------+
| | | PyPy3 | | |
| Windows +----------+-------+---------------+-----------------+
| | | CP2.7 | Appveyor | Appveyor |
| | | CP2.7 | Azure | Azure |
| | +-------+---------------+-----------------+
| | | CP3.5 | Azure | Azure |
| | +-------+---------------+-----------------+
| | | CP3.6 | Appveyor | Appveyor |
| | | CP3.6 | Azure | Azure |
| | +-------+---------------+-----------------+
| | x64 | CP3.7 | Azure | Azure |
| | +-------+---------------+-----------------+
Expand Down

0 comments on commit 9e910aa

Please sign in to comment.