-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy path.appveyor.yml
42 lines (29 loc) · 955 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
37
38
39
40
41
42
build: false
environment:
PYTHONWARNINGS: all
DJANGO_SETTINGS_MODULE: tests.django_settings
matrix:
- PYTHON: "C:/Python27"
DJANGO_VERSION: "Django>=1.8,<1.9"
- PYTHON: "C:/Python27"
DJANGO_VERSION: "Django>=1.9,<1.10"
- PYTHON: "C:/Python27"
DJANGO_VERSION: "Django>=1.10,<1.11"
- PYTHON: "C:/Python27"
DJANGO_VERSION: "Django>=1.11,<2.0"
- PYTHON: "C:/Python35"
DJANGO_VERSION: "Django>=1.8,<1.9"
- PYTHON: "C:/Python35"
DJANGO_VERSION: "Django>=1.9,<1.10"
- PYTHON: "C:/Python35"
DJANGO_VERSION: "Django>=1.10,<1.11"
- PYTHON: "C:/Python35"
DJANGO_VERSION: "Django>=1.11,<2.0"
- PYTHON: "C:/Python35"
DJANGO_VERSION: "Django>=2.0,<2.1"
matrix:
fast_finish: true
install:
- "%PYTHON%/python.exe -m pip install \"requests>=2.11,<2.12\" \"Brotli>=0.6.0,<0.7\" \"%DJANGO_VERSION%\""
test_script:
- "%PYTHON%/python.exe -m unittest discover"