forked from Aagam41/db_file_storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
47 lines (45 loc) · 1.39 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
language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- python: 2.7
env: DJANGO="django==1.11.27" FORMTOOLS="django-formtools==2.1"
#
- python: 3.5
env: DJANGO="django==1.11.27" FORMTOOLS="django-formtools==2.2"
- python: 3.5
env: DJANGO="django==2.2.9" FORMTOOLS="django-formtools==2.2"
#
- python: 3.6
env: DJANGO="django==1.11.27" FORMTOOLS="django-formtools==2.2"
- python: 3.6
env: DJANGO="django==2.2.9" FORMTOOLS="django-formtools==2.2"
- python: 3.6
env: DJANGO="django==3.0.3" FORMTOOLS="django-formtools==2.2"
#
- python: 3.7
env: DJANGO="django==1.11.27" FORMTOOLS="django-formtools==2.2"
- python: 3.7
env: DJANGO="django==2.2.9" FORMTOOLS="django-formtools==2.2"
- python: 3.7
env: DJANGO="django==3.0.3" FORMTOOLS="django-formtools==2.2"
#
- python: 3.8
env: DJANGO="django==1.11.27" FORMTOOLS="django-formtools==2.2"
- python: 3.8
env: DJANGO="django==2.2.9" FORMTOOLS="django-formtools==2.2"
- python: 3.8
env: DJANGO="django==3.0.3" FORMTOOLS="django-formtools==2.2"
install:
- pip install Pillow
- pip install $DJANGO
- pip install $FORMTOOLS
- pip install django-nose
- pip install coveralls
script:
- coverage run --source=db_file_storage demo_and_tests/manage.py test
after_success:
- coveralls