summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 805698e44bc0f8d60c58b58ad6f5ef0f49299ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
language: python
python:
  - "pypy"
  - "2.6"
  - "2.7"
  - "3.3"
install:
    - python setup.py -q install
script:
    - if [[ "$(python -c 'import sys; print sys.version_info[:2]')" == "(2, 6)" ]]; then pip install unittest2; fi
    - py.test --tb=native jsonschema
    - python -m doctest README.rst