File: .travis.yml

package info (click to toggle)
django-polymorphic 0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 436 kB
  • ctags: 586
  • sloc: python: 2,208; makefile: 142
file content (36 lines) | stat: -rw-r--r-- 619 bytes parent folder | download
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
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
env:
  - DJANGO=django==1.4.5
  - DJANGO=django==1.5
  - DJANGO=django==1.6
  - DJANGO=django==1.7
  #- DJANGO=https://github.com/django/django/archive/stable/1.6.x.zip

matrix:
  exclude:
  - python: "3.3"
    env: DJANGO=django==1.4.5
  - python: "3.2"
    env: DJANGO=django==1.4.5
  - python: "2.6"
    env: DJANGO=django==1.7

install:
  - pip install $DJANGO coverage==3.6

script:
  - coverage run --source=polymorphic runtests.py
  - coverage report -m

after_success:
  - pip install coveralls==0.2
  - coveralls

branches:
  only:
    - master