-
Notifications
You must be signed in to change notification settings - Fork 89
/
.travis.yml
57 lines (52 loc) · 1.28 KB
/
.travis.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Config file for automatic testing at travis-ci.org
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
matrix:
fast_finish: true
include:
# DJANGO 3.2.25
- python: 3.6
env: DJANGO_VERSION=3.2.25
- python: 3.7
env: DJANGO_VERSION=3.2.25
- python: 3.8
env: DJANGO_VERSION=3.2.25
- python: 3.9
env: DJANGO_VERSION=3.2.25
- python: 3.10
env: DJANGO_VERSION=3.2.25
# DJANGO 4.2.11
env: DJANGO_VERSION=3.2.25
- python: 3.8
env: DJANGO_VERSION=3.2.25
- python: 3.9
env: DJANGO_VERSION=3.2.25
- python: 3.10
env: DJANGO_VERSION=3.2.25
- python: 3.11
env: DJANGO_VERSION=3.2.25
- python: 3.12
env: DJANGO_VERSION=3.2.25
# DJANGO 5.0.3
- python: 3.10
env: DJANGO_VERSION=3.2.25
- python: 3.11
env: DJANGO_VERSION=3.2.25
- python: 3.12
env: DJANGO_VERSION=3.2.25
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- echo "$DJANGO_VERSION"
- pip install -r requirements_test.txt
# command to run tests using coverage, e.g. python setup.py test
script: coverage run --source django_json_widget runtests.py
# script: tox -e $TOX_ENV
# after_success:
# - codecov -e TOX_ENV