mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
389f6c08d9
For library end users, there is no need to install tests alongside the package itself. This keeps the tests available for development without adding extra packages to user's site-packages directory. Reduces the size of the installed package. Avoids accidental execution of test code by an installed package.
23 lines
300 B
YAML
23 lines
300 B
YAML
# Travis CI configuration file for psycopg2
|
|
|
|
dist: trusty
|
|
sudo: required
|
|
language: python
|
|
|
|
python:
|
|
- 2.7
|
|
- 3.6
|
|
- 3.5
|
|
- 3.4
|
|
|
|
install:
|
|
- python setup.py install
|
|
- rm -rf psycopg2.egg-info
|
|
- sudo scripts/travis_prepare.sh
|
|
|
|
script:
|
|
- scripts/travis_test.sh
|
|
|
|
notifications:
|
|
email: false
|