summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: ea809d9a8f533bdec5262e99fd061392860ecc50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: python
os:
  - linux
python:
  - "2.7"
  - "3.4"
  # does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
  # maintainers to fix their pypy-dev package.
  # - "pypy"
before_install:
  - ./.travis/before_install.sh
# command to install dependencies
install:
  - pip install -r requirements.txt
  - python setup.py install
# command to run tests
matrix:
    include:
        - os: osx
          language: python
        - os: linux
          sudo: required
script: python test/test_load_module.py -v