diff options
author | Adam Stokes <adam.stokes@ubuntu.com> | 2013-04-04 21:32:55 -0400 |
---|---|---|
committer | Adam Stokes <adam.stokes@ubuntu.com> | 2013-04-04 21:32:55 -0400 |
commit | 659fce973f7d345527d4ba868fad4dc49778e257 (patch) | |
tree | 22c66e130c9f754dc0fa1100dacf37bfddc93b27 /.travis.yml | |
parent | d796edd626202c036d49b72de22e4a84be35203e (diff) | |
download | sos-659fce973f7d345527d4ba868fad4dc49778e257.tar.gz |
remove python 2.6 build support and allow failure of python 3.x tests
Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 9b2061b1..6ec6f01b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,15 @@ language: python python: - - 2.6 - 2.7 - 3.2 - 3.3 - "pypy" +matrix: + allow_failures: + - python: 3.2 + - python: 3.3 +notifications: + email: false env: - DEPS=false - DEPS=true |