psycopg2/.travis.yml
Daniele Varrazzo feebc8f689 Don't use separate databases for tests
I got this wrong: I thought parallel test ran in the same VM; they are
isolated instead.
2016-12-24 04:42:55 +01:00

25 lines
299 B
YAML

# Travis CI configuration file for psycopg2
dist: trusty
sudo: required
language: python
python:
- 2.7
- 3.6-dev
- 2.6
- 3.5
- 3.4
- 3.3
- 3.2
install:
- python setup.py install
- sudo scripts/travis_prepare.sh
script:
- scripts/travis_test.sh
notifications:
email: false