Add drone and tox config files

This commit is contained in:
jmartin
2016-03-29 11:41:55 +02:00
parent 0ea490b186
commit 35a3bd8543
2 changed files with 26 additions and 0 deletions

9
.drone.yml Normal file
View File

@@ -0,0 +1,9 @@
image: python:all
env:
- POSTGRESQL_URI=postgresql://postgres@127.0.0.1:5432/
- MYSQL_URI=mysql://root@127.0.0.1:3306/
script:
- pip install tox
- tox -e "{py27,py33,py34,py35}-{sqlite,postgresql}" --skip-missing-interpreters
services:
- postgres