forked from Yelp/bravado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
32 lines (25 loc) · 927 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
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-default
- PYTHON: C:\Python36-x64
TOXENV: py36-default
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'))