forked from vertexproject/synapse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
36 lines (23 loc) · 849 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
34
35
36
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
# TODO
#- PYTHON: "C:\\Python36"
#- PYTHON: "C:\\Python36-x64"
install:
# Upgrade to the latest version of pip to avoid it displaying warnings
- "%PYTHON%\\python.exe -m pip install --upgrade pip"
- "%PYTHON%\\python.exe -m pip install --upgrade setuptools"
# do some manual dep installs that fix windows issues...
- "%PYTHON%\\python.exe -m pip install pycparser"
- "%PYTHON%\\python.exe -m pip install cryptography"
# use setuptools to install deps
- "%CMD_IN_ENV% %PYTHON%\\python.exe setup.py develop"
# no msbuild phase in the project
build: off
test_script:
# Run the project tests
- "%CMD_IN_ENV% %PYTHON%\\python.exe -m unittest discover -v --fail"