forked from matijakolaric-com/django-music-publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
30 lines (30 loc) · 878 Bytes
/
.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
language: python
matrix:
include:
- name: "Django 2.2a1 Py3.7 PostgreSQL9.6"
python: "3.7-dev"
env: DATABASE_URL="postgres://postgres@localhost/dmp"
addons:
postgresql: "9.6"
install:
- pip install -r requirements.txt
- pip install -U Django>=2.2a1
- name: "Py3.5 PostgreSQL9.4"
python: "3.5"
addons:
postgresql: "9.4"
env: DATABASE_URL="postgres://postgres@localhost/dmp"
- name: "Py3.6 SQLite3"
python: "3.6"
env: DATABASE_URL="sqlite:///db.sqlite3"
- name: "Py3.6 PostgreSQL9.5"
python: "3.6"
env: DATABASE_URL="postgres://postgres@localhost/dmp"
addons:
postgresql: "9.5"
# command to install dependencies
install:
- pip install -r requirements.txt
script:
- coverage run --source='music_publisher' manage.py test
after_success: coveralls