2013-06-25 17:49:38 +00:00
|
|
|
language: python
|
|
|
|
|
|
|
|
python:
|
|
|
|
- '2.6'
|
|
|
|
- '2.7'
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- sudo apt-get update
|
2013-06-25 18:02:08 +00:00
|
|
|
- sudo apt-get install --fix-broken --ignore-missing -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" swig
|
2013-06-25 17:49:38 +00:00
|
|
|
- (git describe && git fetch --tags) || (git remote add upstream git://github.com/saltstack/salt-cloud.git && git fetch --tags upstream)
|
|
|
|
- pip install mock --use-mirrors --mirrors=http://testpypi.python.org/pypi
|
|
|
|
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
|
|
|
|
- pip install coveralls
|
|
|
|
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors --mirrors=http://testpypi.python.org/pypi unittest2 ordereddict; fi"
|
2013-06-26 19:59:49 +00:00
|
|
|
- pip install git+https://github.com/saltstack/salt-testing.git#egg=SaltTesting
|
2013-06-25 17:49:38 +00:00
|
|
|
|
|
|
|
install: pip install -r requirements.txt --use-mirrors --mirrors=http://testpypi.python.org/pypi
|
|
|
|
|
2013-09-18 10:45:29 +00:00
|
|
|
script: "sudo -E /home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/bin/python setup.py test --runtests-opts='-v --coverage'"
|
2013-06-25 17:49:38 +00:00
|
|
|
|
|
|
|
after_script:
|
|
|
|
- coveralls
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels: "irc.freenode.org#salt-devel"
|
|
|
|
on_success: change
|
|
|
|
on_failure: change
|