forked from wechatpy/wechatpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
41 lines (39 loc) · 1.11 KB
/
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
37
38
39
40
41
build: false
environment:
matrix:
- PYTHON: "C:/Python27"
TESTENV: "py27-cryptography"
- PYTHON: "C:/Python27"
TESTENV: "py27-pycrypto"
- PYTHON: "C:/Python27-x64"
TESTENV: "py27-cryptography"
- PYTHON: "C:/Python27-x64"
TESTENV: "py27-pycrypto"
- PYTHON: "C:/Python34"
TESTENV: "py34-cryptography"
- PYTHON: "C:/Python34"
TESTENV: "py34-pycrypto"
- PYTHON: "C:/Python35"
TESTENV: "py35-cryptography"
- PYTHON: "C:/Python35"
TESTENV: "py35-pycrypto"
- PYTHON: "C:/Python36"
TESTENV: "py36-cryptography"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
# Install the Redis
- nuget install redis-64 -excludeversion
- redis-64\tools\redis-server.exe --service-install
- redis-64\tools\redis-server.exe --service-start
- '@ECHO Redis Started'
- C:\Python27\python -m pip install tox
test_script:
- C:\Python27\python -m tox -e %TESTENV%
after_test:
- pip install codecov
- codecov