summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 56355c2462a9f2bdde86d1475ca11aa8e9fac562 (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
31
32
33
34
35
36
37
38
# Travis CI configuration file for psycopg2

language: python

dist: bionic

arch:
  - amd64
  - arm64

python:
  - 3.5
  - 3.6
  - 3.7
  - 3.8

matrix:
  include:
    - python: 2.7

install:
  - sudo apt-get install -y bc
  - 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