-
Notifications
You must be signed in to change notification settings - Fork 11
/
appveyor.yml
43 lines (38 loc) · 1.04 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
42
43
# Made with help from https://packaging.python.org/appveyor/
environment:
TOX_TESTENV_PASSENV: DISTUTILS_USE_SDK MSSdk INCLUDE LIB
matrix:
- PYTHON: "C:\\Python27"
TOXENV: py-release
- PYTHON: "C:\\Python27"
TOXENV: py-redis
- PYTHON: "C:\\Python27"
TOXENV: py-s3
- PYTHON: "C:\\Python34"
TOXENV: py-release
- PYTHON: "C:\\Python34"
TOXENV: py-redis
- PYTHON: "C:\\Python34"
TOXENV: py-s3
- PYTHON: "C:\\Python35"
TOXENV: py-release
- PYTHON: "C:\\Python35"
TOXENV: py-redis
- PYTHON: "C:\\Python35"
TOXENV: py-s3
- PYTHON: "C:\\Python36"
TOXENV: py-release
- PYTHON: "C:\\Python36"
TOXENV: py-redis
- PYTHON: "C:\\Python36"
TOXENV: py-s3
install:
# Install Redis
- nuget install redis-64 -excludeversion
- redis-64\tools\redis-server.exe --service-install
- redis-64\tools\redis-server.exe --service-start
# Install tox for testing
- "%PYTHON%\\Scripts\\pip install tox"
build: off
test_script:
- "%PYTHON%\\Scripts\\tox"