forked from Fantomas42/django-blog-zinnia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (43 loc) · 1.13 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
language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DATABASE_ENGINE=sqlite
- DATABASE_ENGINE=postgres
- DATABASE_ENGINE=mysql
matrix:
exclude:
- python: 3.2
env: DATABASE_ENGINE=mysql
- python: 3.3
env: DATABASE_ENGINE=mysql
- python: 3.4
env: DATABASE_ENGINE=mysql
fast_finish: true
install:
- pip install -U setuptools
- python bootstrap.py
- ./bin/buildout -c travis.cfg testenv:DJANGO_SETTINGS_MODULE=zinnia.tests.implementations.$DATABASE_ENGINE
- sh -c "if [ '$DATABASE_ENGINE' = 'postgres' ];
then
pip install psycopg2;
psql -c 'create database zinnia;' -U postgres;
fi"
- sh -c "if [ '$DATABASE_ENGINE' = 'mysql' ];
then
pip install mysql-python;
mysql -e 'create database zinnia CHARACTER SET utf8 COLLATE utf8_general_ci;';
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"