-
Notifications
You must be signed in to change notification settings - Fork 730
/
.travis.yml
39 lines (39 loc) · 1 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
sudo: false
dist: xenial
language: python
python:
- 3.7
- 3.8
services:
- postgresql
- mysql
env:
- DJANGO=2.2.11 DATABASE_ENGINE=sqlite
- DJANGO=2.2.11 DATABASE_ENGINE=postgres
- DJANGO=2.2.11 DATABASE_ENGINE=mysql
- DJANGO=3.0.4 DATABASE_ENGINE=sqlite
- DJANGO=3.0.4 DATABASE_ENGINE=postgres
- DJANGO=3.0.4 DATABASE_ENGINE=mysql
matrix:
fast_finish: true
install:
- pip install zc.buildout
- buildout -c travis.cfg versions:django=$DJANGO testenv:DJANGO_SETTINGS_MODULE=zinnia.tests.implementations.$DATABASE_ENGINE
- sh -c "if [ '$DATABASE_ENGINE' = 'postgres' ];
then
pip install psycopg2;
fi"
- sh -c "if [ '$DATABASE_ENGINE' = 'mysql' ];
then
pip install mysqlclient;
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql;
fi"
before_script:
- ./bin/flake8 zinnia
script:
- ./bin/test
after_success:
- ./bin/coveralls
notifications:
irc:
- "irc.freenode.org#django-blog-zinnia"