django-watson/.travis.yml
2017-06-19 22:26:58 +01:00

22 lines
352 B
YAML

language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
cache:
directories:
- $HOME/.cache/pip
services:
- postgresql
- mysql
install:
- pip install tox-travis
before_script:
- mysql -e 'create database test_project';
- psql -c 'create database test_project;' -U postgres;
script: tox
notifications:
email: false