forked from webpy/webpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
17 lines (17 loc) · 715 Bytes
/
.travis.yml
File metadata and controls
17 lines (17 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: python
python:
- "2.5"
- "2.6"
- "2.7"
# - "3.1"
# - "3.2"
install: pip install -r test/requirements.txt --use-mirrors; if [ $TRAVIS_PYTHON_VERSION == 2* ] ; then pip install -r test/requirements2.txt --use-mirrors; fi
script: python test/alltests.py
before_install:
- "sudo mkdir -p /usr/include/postgresql/8.4/server"
# - 'sudo apt-get -o Dpkg::Options::="--force-overwrite" install python-profiler'
before_script:
- "psql -c 'create database webpy;' -U postgres"
- mysql --user=root -e "create user 'scott'@'localhost' identified by 'tiger'; create database webpy; grant all privileges on webpy.* to 'scott'@'localhost' with grant option;"
notifications:
irc: "irc.freenode.org#webpy"