Add expectThat method to testtools.TestCase.
[third_party/testtools] / .travis.yml
1 language: python
2
3 python:
4   - "2.6"
5   - "2.7"
6   - "3.3"
7   - "pypy"
8
9 # We have to pin Jinja2 < 2.7  for Python 3.2 because 2.7 drops/breaks support:
10 # http://jinja.pocoo.org/docs/changelog/#version-2-7
11 #
12 # See also:
13 # http://stackoverflow.com/questions/18252804/syntax-error-in-jinja-2-library
14 matrix:
15   include:
16     - python: "3.2"
17       env: JINJA_REQ="jinja2<2.7"
18
19 install:
20   - pip install -q --use-mirrors fixtures extras python-mimeparse $JINJA_REQ sphinx
21   - python setup.py -q install
22
23 script:
24   - python -m testtools.run testtools.tests.test_suite
25   - make clean-sphinx docs