Bump django-debug-toolbar from 1.9.1 to 1.10
[mygpo.git] / .travis.yml
blob3b7c2585502ca4d1d6a674631f6284eb69aad4ba
1 language: python
3 python:
4  - "3.6"
5  - "3.6-dev"
6  - "3.7-dev"
7  - "nightly"
8  - "pypy3"
10 services:
11  - redis-server
13 install:
14  - pip install -r requirements.txt -r requirements-test.txt
15  - pip install coveralls
17 before_script:
18   - psql -c 'create database mygpo_test;' -U postgres
20 script:
21   - pytest --cov=mygpo/ --cov-branch
23 after_script:
24   - coveralls
26 env:
27  - DATABASE_URL="postgres://postgres@localhost/mygpo_test"
29 sudo: false
31 # temporarily allow failures on 3.7
32 # see https://github.com/chtd/psycopg2cffi/issues/95
33 matrix:
34   allow_failures:
35     - python: "3.7-dev"
36     - python: "nightly"