mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-11 03:26:37 +03:00
31 lines
495 B
YAML
31 lines
495 B
YAML
# 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
|