forked from elmundio87/terraform_validate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
29 lines (23 loc) · 881 Bytes
/
appveyor.yml
File metadata and controls
29 lines (23 loc) · 881 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
29
environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python34-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python35-x64"
install:
- "%PYTHON%\\python.exe -m pip install unittest2 pytest coverage^<4"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
build: off
test_script:
- "%PYTHON%\\python.exe -m coverage run --source terraform_validate -m py.test"
- "%PYTHON%\\python.exe -m coverage report --show-missing"