diff options
author | salimfadhley <sal@stodge.org> | 2013-06-12 23:59:28 +0100 |
---|---|---|
committer | salimfadhley <sal@stodge.org> | 2013-06-12 23:59:28 +0100 |
commit | 1e3dec59b20e03abcdb77900b4db8f39d1d1f17d (patch) | |
tree | 7395c3ce2fd5277eb657d81803d9d6862e3b7d85 /.travis.yml | |
parent | 999ac2d611bef067b36344a88eae7da413a86a47 (diff) | |
download | python-jenkinsapi-1e3dec59b20e03abcdb77900b4db8f39d1d1f17d.tar.gz python-jenkinsapi-1e3dec59b20e03abcdb77900b4db8f39d1d1f17d.tar.bz2 python-jenkinsapi-1e3dec59b20e03abcdb77900b4db8f39d1d1f17d.zip |
ci should prefer nosetests
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 81f9959..03c3be9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,9 @@ language: python python: - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors -install: python setup.py develop +install: + - "python setup.py develop" + - "easy install mock" + - "easy install nose" # command to run tests, e.g. python setup.py test -script: python setup.py test +script: python setup.py nosetests |