-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (38 loc) · 911 Bytes
/
.travis.yml
File metadata and controls
40 lines (38 loc) · 911 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
30
31
32
33
34
35
36
37
38
39
40
language: python
python: 3.8
dist: xenial
env:
global:
- DRF="djangorestframework==3.12.4"
- DJANGO="django==3.2.4"
matrix:
include:
- name: "Python 3.11"
python: "3.11"
- name: "Python 3.10"
python: "3.10"
- name: "Python 3.9"
python: "3.9"
- name: "Python 3.8"
python: "3.8"
- name: "Python 3.7"
python: "3.7"
- name: "Python 3.6"
python: "3.6"
- name: "Django 1.11"
env:
- DJANGO="django==1.11.27"
- name: "Django 2.2"
env:
- DJANGO="django==2.2.9"
- DRF="djangorestframework==3.9.3"
- name: "Django 3.2.4"
env:
- DJANGO="django==3.2.4"
- DRF="djangorestframework==3.12.4"
- name: "Django 4.2.6"
env:
- DJANGO="django==4.2.6"
- DRF="djangorestframework==3.14.4"
install: pip install -r requirements.txt
script: python runtests.py