forked from bruth/django-tracking2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (31 loc) · 685 Bytes
/
.travis.yml
File metadata and controls
37 lines (31 loc) · 685 Bytes
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
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO=1.4.16
- DJANGO=1.5.11
- DJANGO=1.6.8
- DJANGO=1.7.1
matrix:
exclude:
- python: "2.6"
env: DJANGO=1.7.1
- python: "3.2"
env: DJANGO=1.4.16
- python: "3.3"
env: DJANGO=1.4.16
- python: "3.4"
env: DJANGO=1.4.16
before_install:
- sudo apt-get install libgeoip-dev
install:
- pip install -q Django==$DJANGO
- pip install geoip
- pip install coverage django-discover-runner mock unittest2
- python setup.py develop
script:
- python example/manage.py test --verbosity=2