forked from cloudify-cosmo/cloudify-script-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (22 loc) · 652 Bytes
/
Copy pathappveyor.yml
File metadata and controls
28 lines (22 loc) · 652 Bytes
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
environment:
TOX_ENV: pywin
matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x" # currently 2.7.9
PYTHON_ARCH: "32"
version: 1.0.{build}
build: off
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
# Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date.
- "pip install --disable-pip-version-check --user --upgrade pip"
before_test:
- pip install virtualenv --upgrade
- virtualenv --version
- virtualenv env
- 'env\Scripts\activate.bat'
- echo Installing tox
- pip install tox
test_script:
- tox -e %TOX_ENV%