-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (23 loc) · 712 Bytes
/
.travis.yml
File metadata and controls
29 lines (23 loc) · 712 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
language: python
python:
- 3.3
- 3.4
env:
- DJANGO=Django==1.7.1
- DJANGO=https://github.com/django/django/archive/master.zip
matrix:
# 2014-11-16: global failure due to django-nose failure
allow_failures:
- env: DJANGO=https://github.com/django/django/archive/master.zip
install:
- sudo apt-get install libxml2-dev libxslt-dev
- pip install $DJANGO
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install -r requirements-doc.txt
script:
- mkdocs build
- cd tests
- coverage run --source=django_google_dork --omit=*/migrations/* ./manage.py test
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == 3.3* && $DJANGO == 1.7* ]]; then coveralls; fi