forked from hovel/pybbm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
71 lines (67 loc) · 2.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO="Django>=1.4,<1.5" DB=sqlite
- DJANGO="Django>=1.4,<1.5" DB=postgres
- DJANGO="Django>=1.4,<1.5" DB=mysql
- DJANGO="Django>=1.5,<1.6" DB=sqlite
- DJANGO="Django>=1.5,<1.6" DB=postgres
- DJANGO="Django>=1.5,<1.6" DB=mysql
- DJANGO="Django>=1.6,<1.7" DB=sqlite
- DJANGO="Django>=1.6,<1.7" DB=postgres
- DJANGO="Django>=1.6,<1.7" DB=mysql
- DJANGO="Django>=1.7,<1.8" DB=sqlite
- DJANGO="Django>=1.7,<1.8" DB=postgres
- DJANGO="Django>=1.7,<1.8" DB=mysql
matrix:
exclude:
- python: "3.2"
env: DJANGO="Django>=1.4,<1.5" DB=sqlite
- python: "3.2"
env: DJANGO="Django>=1.4,<1.5" DB=postgres
- python: "3.2"
env: DJANGO="Django>=1.4,<1.5" DB=mysql
- python: "3.3"
env: DJANGO="Django>=1.4,<1.5" DB=sqlite
- python: "3.3"
env: DJANGO="Django>=1.4,<1.5" DB=postgres
- python: "3.3"
env: DJANGO="Django>=1.4,<1.5" DB=mysql
- python: "3.4"
env: DJANGO="Django>=1.4,<1.5" DB=sqlite
- python: "3.4"
env: DJANGO="Django>=1.4,<1.5" DB=postgres
- python: "3.4"
env: DJANGO="Django>=1.4,<1.5" DB=mysql
- python: "3.2"
env: DJANGO="Django>=1.5,<1.6" DB=mysql
- python: "3.3"
env: DJANGO="Django>=1.5,<1.6" DB=mysql
- python: "3.4"
env: DJANGO="Django>=1.5,<1.6" DB=mysql
- python: "3.2"
env: DJANGO="Django>=1.6,<1.7" DB=mysql
- python: "3.3"
env: DJANGO="Django>=1.6,<1.7" DB=mysql
- python: "3.4"
env: DJANGO="Django>=1.6,<1.7" DB=mysql
- python: "3.2"
env: DJANGO="Django>=1.7,<1.8" DB=mysql
- python: "3.3"
env: DJANGO="Django>=1.7,<1.8" DB=mysql
- python: "3.4"
env: DJANGO="Django>=1.7,<1.8" DB=mysql
before_script:
- mysql -e 'create database pybbm;'
- psql -c 'create database pybbm;' -U postgres
install:
- if [[ $DB == mysql ]]; then pip install -qU mysql-python; fi
- if [[ $DB == postgres ]]; then pip install -qU psycopg2; fi
- pip install -qU $DJANGO
- CFLAGS="-O0" pip install -qU -r test/test_project/requirements_test.txt
script:
- python setup.py test