summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: af7abeabd16c87418ef4eb64f326880c02e13af6 (plain)
1
2
3
4
5
6
7
8
language: python
python:
 - "2.5"
 - "2.6"
 - "2.7"
install: (cd MySQLdb && python setup.py install)
before_script: mysql -e 'create database mysqldb_test charset utf8;'
script: (cd MySQLdb && TESTDB=travis.cnf nosetests)