Added apt-get install libvirt for travis

This commit is contained in:
Anton Beloglazov
2012-08-13 15:56:48 +10:00
parent 6fc23bc8c1
commit f0399f2cf4
2 changed files with 2 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ python:
- 2.6 - 2.6
- 2.7 - 2.7
install: install:
- apt-get install -y python-libvirt
- pip install --use-mirrors pyqcy mocktest PyContracts nose - pip install --use-mirrors pyqcy mocktest PyContracts nose
- python setup.py install - python setup.py install
script: nosetests script: nosetests

View File

@@ -35,5 +35,5 @@ setup(
packages=find_packages(), packages=find_packages(),
test_suite='tests', test_suite='tests',
#tests_require=['pyqcy', 'mocktest', 'PyContracts'], tests_require=['pyqcy', 'mocktest', 'PyContracts'],
) )