blob: 7db2120f406220724b94ff45af969ab5717d92dc (
plain)
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
|
version: '{branch}-{build}'
build: off
cache:
- 'C:\\tmp'
environment:
matrix:
- PYTHON: "C:\\Python35"
TOXENV: "py35"
- PYTHON: "C:\\Python36"
TOXENV: "py36"
- PYTHON: "C:\\Python37"
TOXENV: "py37"
init:
- ps: echo $env:TOXENV
- ps: ls C:\Python*
- ps: mkdir C:\tmp
install:
- 'powershell ./appveyor/install.ps1'
- 'python -m pip install -U setuptools pip tox wheel virtualenv'
- 'python -m pip --version'
- 'python -m tox --version'
test_script:
- 'python -m tox'
on_failure:
- ps: dir "env:"
- ps: get-content .tox\*\log\*
|