summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2f71c786508b81c89b4d560a56ce749f9158e0b0 (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/unittests"
    - "nosetests jenkinsapi_tests/systests"