blob: e2354e61b642e9aca56f19aef34db16b403816e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "PyPy"
install:
- "pip install ."
script:
- py.test
branches:
only:
- master
matrix:
allow_failures:
# Travis-CI currently has PyPy 1.9 which does not have the CFFI backend.
# See: https://github.com/travis-ci/travis-ci/issues/1106
- python: "PyPy"
|