summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 6152a4bc256beb21398e20a3147b660bb665fcb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Travis CI configuration file for psycopg2

dist: trusty
sudo: required
language: python

python:
  - 2.7
  - 3.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