psycopg2/.travis.yml
Jon Dufresne 389f6c08d9 Avoid installing tests to site-packages
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.
2017-12-10 10:55:58 -08:00

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