]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
re-add travis, but exclude the python3 branch
authorBob Halley <halley@dnspython.org>
Tue, 20 Sep 2016 12:59:17 +0000 (05:59 -0700)
committerBob Halley <halley@dnspython.org>
Tue, 20 Sep 2016 12:59:17 +0000 (05:59 -0700)
.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..7615b9b
--- /dev/null
@@ -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