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

language: python

matrix:
  include:
    - python: 2.7
    - python: 3.8
    - python: 3.7
    - python: 3.6
    - python: 3.5
    - python: 3.4

install:
  - pip install -U pip setuptools wheel
  - pip install .
  - rm -rf psycopg2.egg-info
  - sudo scripts/travis_prepare.sh

script:
  - scripts/travis_test.sh

deploy:
  - provider: script
    script: bash scripts/travis_update_docs.sh
    on:
      branch: master

notifications:
  email: false