forked from jazzband/django-embed-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (41 loc) · 1019 Bytes
/
.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
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.6"
cache: pip
env:
- DJANGO_VERSION=1.5.*
- DJANGO_VERSION=1.6.*
- DJANGO_VERSION=1.7.*
- DJANGO_VERSION=1.8.*
- DJANGO_VERSION=1.9.*
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11.*
matrix:
exclude:
- python: '3.6'
env: DJANGO_VERSION=1.5.*
- python: '3.6'
env: DJANGO_VERSION=1.6.*
- python: '3.6'
env: DJANGO_VERSION=1.7.*
- python: '3.6'
env: DJANGO_VERSION=1.8.*
- python: '3.6'
env: DJANGO_VERSION=1.9.*
- python: '3.6'
env: DJANGO_VERSION=1.10.*
install:
- pip install -q Django==$DJANGO_VERSION
- pip install coveralls
- pip install mock
- pip install south
- pip install nose
- pip install testfixtures
script:
- python setup.py build
- PYTHONHASHSEED=0 python setup.py nosetests --verbosity 2 --with-coverage --cover-tests --cover-erase
after_success:
- coveralls