Author: cito
Date: Sun Feb  7 09:29:46 2016
New Revision: 834

Log:
Add Travis CI configuration

Added:
   branches/4.x/travis.yml
   trunk/travis.yml

Added: branches/4.x/travis.yml
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ branches/4.x/travis.yml     Sun Feb  7 09:29:46 2016        (r834)
@@ -0,0 +1,9 @@
+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
\ No newline at end of file

Added: trunk/travis.yml
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ trunk/travis.yml    Sun Feb  7 09:29:46 2016        (r834)
@@ -0,0 +1,11 @@
+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
\ No newline at end of file
_______________________________________________
PyGreSQL mailing list
[email protected]
https://mail.vex.net/mailman/listinfo.cgi/pygresql

Reply via email to