summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 6126b3a204d0911dddaab3a8fa69c2017d0cdcc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: python
matrix:
    allow_failures:
        - os: osx
    include:
        - os: osx
          language: generic
        - os: linux
          sudo: required
          python: 3.4
        - os: linux
          sudo: required
          python: 2.7
before_install:
  - ./.travis/before_install.sh
# command to install dependencies
install:
  - pip install -r requirements.txt
  - python setup.py install
# command to run tests
script: python test/test_load_module.py -v