File: .travis.yml

package info (click to toggle)
django-celery-transactions 0.3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 168 kB
  • ctags: 67
  • sloc: python: 402; makefile: 7
file content (37 lines) | stat: -rw-r--r-- 694 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
37
language: python

python:
  - "2.7"
  - "3.3"
  - "3.4"

services: mysql

env:
  - DJANGO="django==1.8.5" DB="mysql"
  - DJANGO="django==1.7.10" DB="mysql"
  - DJANGO="django==1.6.11" DB="mysql"

install:
  - pip install $DJANGO
  - pip install celery==3.1.18
  - pip install django-celery==3.1.16
  - pip install coveralls
  - pip install mysqlclient

before_script:
  - mysql -e 'create database testdb;'

script:
  - coverage run --source=djcelery_transactions runtests.py
  - coverage run --source=djcelery_transactions runtests-djcelery.py

after_success:
  coveralls

notifications:
  email:
    recipients:
      - nicolas.grasset@gmail.com
    on_success: change
    on_failure: change