forked from inzunzo/django-tagging-plateiq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (38 loc) · 1.11 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
language: python
python:
- 2.7
- 3.5
env:
- DJANGO=1.8 DATABASE_ENGINE=sqlite
- DJANGO=1.8 DATABASE_ENGINE=postgres
- DJANGO=1.8 DATABASE_ENGINE=mysql
- DJANGO=1.9 DATABASE_ENGINE=sqlite
- DJANGO=1.9 DATABASE_ENGINE=postgres
- DJANGO=1.9 DATABASE_ENGINE=mysql
- DJANGO=1.10 DATABASE_ENGINE=sqlite
- DJANGO=1.10 DATABASE_ENGINE=postgres
- DJANGO=1.10 DATABASE_ENGINE=mysql
install:
- pip install -U setuptools
- python bootstrap.py
- ./bin/buildout versions:django=$DJANGO
- sh -c "if [ '$DATABASE_ENGINE' = 'postgres' ];
then
pip install psycopg2;
psql -c 'create database tagging;' -U postgres;
fi"
- sh -c "if [ '$DATABASE_ENGINE' = 'mysql' ];
then
pip install mysqlclient;
mysql -e 'create database tagging CHARACTER SET utf8 COLLATE utf8_general_ci;';
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql;
fi"
before_script:
- ./bin/flake8 tagging
script:
- ./bin/test-and-cover
after_success:
- ./bin/coveralls
notifications:
irc:
- "irc.freenode.org#django-tagging"