summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: ebc45e84679b0288efe420d5a6e5a8ca77130108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: python
python:
    - 2.6
    - 2.7
    - 3.2
    - 3.3
    - 3.4
    - pypy
install:
    - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install unittest2; fi
    - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
script:
    - pip install flake8
    - python setup.py build
    - python setup.py install
    - python test/test_sendfile.py
    - make flake8
os:
    - linux
    - osx