forked from Yelp/bravado-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.appveyor.yml
33 lines (27 loc) · 959 Bytes
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: '{build}'
image: Visual Studio 2017
environment:
matrix:
# Available python versions and their locations on https://www.appveyor.com/docs/build-environment/#python
- PYTHON: C:\Python27-x64
TOXENV: py27
- PYTHON: C:\Python35-x64
TOXENV: py35
- PYTHON: C:\Python36-x64
TOXENV: py36
build: off
install:
- cmd: SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
- cmd: pip install tox
before_test:
- cmd: python --version
- cmd: pip --version
- cmd: tox --version
test_script:
- cmd: >-
tox
# Uncomment the following block to enable remote desktop debugging (https://www.appveyor.com/docs/how-to/rdp-to-build-worker/)
# init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
# on_failure:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))