blob: 7619dace1c3d9e9ba9bd6d500d0346415138d3d2 [file] [log] [blame]
Robert Collinsfd2d4b72015-07-07 11:24:28 +12001sudo: false
Robert Collins001ec862015-07-07 10:47:27 +12002language: python
3python:
Robert Collins001ec862015-07-07 10:47:27 +12004 - "2.7"
5 - "3.2"
6 - "3.3"
7 - "3.4"
Robert Collins42cd3e22015-07-07 12:17:54 +12008 - pypy
9 - pypy3
Robert Collins18c9bbd2015-07-10 14:00:11 +120010matrix:
11 include:
12# Travis nightly look to be 3.5.0a4, b3 is out and the syntax error we see
13# doesn't happen in trunk.
14 - python: "nightly"
15 env: SKIP_DOCS=1
Robert Collins05a92472015-07-07 11:17:36 +120016install:
17 - pip install -U pip
18 - pip install -U wheel setuptools
Robert Collins18c9bbd2015-07-10 14:00:11 +120019 - pip install -U .[docs,test]
20script:
21 - unit2
22 - if [ -z "$SKIP_DOCS" ]; then python setup.py build_sphinx; fi
23 - rst2html.py README.txt README.html