diff options
| author | Chris McDonough <chrism@plope.com> | 2012-06-14 19:30:22 -0700 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-06-14 19:30:22 -0700 |
| commit | eb3c87230402201669501d5889d43634b785a9ed (patch) | |
| tree | ceb2ef21bc644ccce72d82a0799f68c260534f52 /.travis.yml | |
| parent | 22d13cca116df2c9b4b9015d873bcc53a362731c (diff) | |
| parent | e07b4f8edd32766dd0c8327d04a9c7b99d8dc2e9 (diff) | |
| download | pyramid-eb3c87230402201669501d5889d43634b785a9ed.tar.gz pyramid-eb3c87230402201669501d5889d43634b785a9ed.tar.bz2 pyramid-eb3c87230402201669501d5889d43634b785a9ed.zip | |
Merge pull request #616 from msabramo/testing
Add py33 to tox and add .travis.yml for Travis CI
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..2e737af04 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python + +python: + - 2.6 + - 2.7 + - pypy + - 3.2 + +matrix: + allow_failures: + - python: pypy + +script: python setup.py test |
