summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 187e8ab81e1fd2ae6361e97d285954eedbc19409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
language: python
python:
  - "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
    - "python setup.py develop"
    - "easy_install mock"
    - "easy_install nose"
# command to run tests, e.g. python setup.py test
script:
    - "nosetests jenkinsapi_tests"
#    - "nosetests jenkinsapi_tests/systests"