blob: 7615b9bb933a7eeaec9e70bde5d26e242072107f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|