18 lines
295 B
YAML
18 lines
295 B
YAML
language: python
|
|
|
|
python:
|
|
- '2.5'
|
|
- '2.6'
|
|
- '2.7'
|
|
|
|
before_script:
|
|
- pip install unittest2
|
|
- mysql -e 'create database test_pymysql;'
|
|
- mysql -e 'create database test_pymysql2;'
|
|
|
|
script: PYTHONPATH=. unit2 -v gluon.tests
|
|
|
|
notifications:
|
|
irc:
|
|
channels: "irc.freenode.org#web2py"
|