From: Bob Halley Date: Tue, 20 Sep 2016 12:59:17 +0000 (-0700) Subject: re-add travis, but exclude the python3 branch X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d4438d5e9a07c6b457100cf74939f49339aa246;p=thirdparty%2Fdnspython.git re-add travis, but exclude the python3 branch --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..7615b9bb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +language: python +python: + - "2.6" + - "2.7" + # 3.2 make unicode literal handling difficult. + # we dropped that, see https://github.com/rthalley/dnspython/pull/148 + # for comments + #- "3.2" + - "3.3" + - "3.4" + - "3.5" + - "3.5-dev" # 3.5 development branch + - "nightly" # currently points to 3.6-dev +matrix: + allow_failures: + - python: nightly +branches: + except: + - python3 +install: + - pip install unittest2 pylint pycrypto ecdsa idna +script: + - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then make lint; fi + - make test