Author: cito Date: Sun Feb 7 10:05:09 2016 New Revision: 837 Log: Add comment with link to Travis configuration docs
Modified: branches/4.x/.travis.yml trunk/.travis.yml Modified: branches/4.x/.travis.yml ============================================================================== --- branches/4.x/.travis.yml Sun Feb 7 09:49:29 2016 (r836) +++ branches/4.x/.travis.yml Sun Feb 7 10:05:09 2016 (r837) @@ -1,15 +1,24 @@ +# Travis CI configuration +# see https://docs.travis-ci.com/user/languages/python + language: python + # unfortunately, Travis cannot be used to test with Python 2.4 and 2.5 python: - "2.6" - "2.7" + install: - pip install . - if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install unittest2; fi + script: python setup.py test + addons: postgresql: "9.1" + services: - postgresql + before_script: - - psql -U postgres -c 'create database unittest' \ No newline at end of file + - psql -U postgres -c 'create database unittest' Modified: trunk/.travis.yml ============================================================================== --- trunk/.travis.yml Sun Feb 7 09:49:29 2016 (r836) +++ trunk/.travis.yml Sun Feb 7 10:05:09 2016 (r837) @@ -1,17 +1,26 @@ +# Travis CI configuration +# see https://docs.travis-ci.com/user/languages/python + language: python + python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" + install: - pip install . - if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install unittest2; fi + script: python setup.py test + addons: postgresql: "9.4" + services: - postgresql + before_script: - - psql -U postgres -c 'create database unittest' \ No newline at end of file + - psql -U postgres -c 'create database unittest' _______________________________________________ PyGreSQL mailing list [email protected] https://mail.vex.net/mailman/listinfo.cgi/pygresql
