summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMarc Abramowitz <marc@marc-abramowitz.com>2012-06-01 07:59:11 -0700
committerMarc Abramowitz <marc@marc-abramowitz.com>2012-06-14 11:37:40 -0700
commit366f9d5960c0cb85ef0ab9403e37e19fc85961d0 (patch)
tree8c8c788401373b0475326ef4eed7dcb09266eae6 /.travis.yml
parentb555e98c477056a7b32a46294c42c11a3b96b432 (diff)
downloadpyramid-366f9d5960c0cb85ef0ab9403e37e19fc85961d0.tar.gz
pyramid-366f9d5960c0cb85ef0ab9403e37e19fc85961d0.tar.bz2
pyramid-366f9d5960c0cb85ef0ab9403e37e19fc85961d0.zip
Add .travis.yml for Travis CI (http://travis-ci.org/)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..cb4cc69e1
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,14 @@
+language: python
+
+python:
+ - 2.6
+ - 2.7
+ - pypy
+ - 3.2
+
+matrix:
+ allow_failures:
+ - python: pypy
+
+script: python setup.py test
+