.travis.yml 410 字节
Newer Older
1 2 3 4 5 6 7 8 9
language: python
python:
    - "2.7"

branches:
    only:
        - master

install:
10
    - pip install sphinx tox pylint autopep8 flexmock
11 12 13 14 15 16
    - pip install inspektor
    - pip install -r requirements.txt

script:
    - inspekt lint
    - inspekt style
17 18 19
    - ./selftests/run -v selftests/all/doc
    - ./selftests/run -v selftests/all/functional
    - ./selftests/run selftests/all/unit -c selftests/.nose.cfg