Robert Collins | fd2d4b7 | 2015-07-07 11:24:28 +1200 | [diff] [blame] | 1 | sudo: false |
Robert Collins | 001ec86 | 2015-07-07 10:47:27 +1200 | [diff] [blame] | 2 | language: python |
| 3 | python: |
Robert Collins | 001ec86 | 2015-07-07 10:47:27 +1200 | [diff] [blame] | 4 | - "2.7" |
| 5 | - "3.2" |
| 6 | - "3.3" |
| 7 | - "3.4" |
Robert Collins | 42cd3e2 | 2015-07-07 12:17:54 +1200 | [diff] [blame] | 8 | - pypy |
| 9 | - pypy3 |
Robert Collins | 18c9bbd | 2015-07-10 14:00:11 +1200 | [diff] [blame^] | 10 | matrix: |
| 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 Collins | 05a9247 | 2015-07-07 11:17:36 +1200 | [diff] [blame] | 16 | install: |
| 17 | - pip install -U pip |
| 18 | - pip install -U wheel setuptools |
Robert Collins | 18c9bbd | 2015-07-10 14:00:11 +1200 | [diff] [blame^] | 19 | - pip install -U .[docs,test] |
| 20 | script: |
| 21 | - unit2 |
| 22 | - if [ -z "$SKIP_DOCS" ]; then python setup.py build_sphinx; fi |
| 23 | - rst2html.py README.txt README.html |