salt/.travis.yml

28 lines
1.1 KiB
YAML
Raw Normal View History

language: python
python:
- '2.6'
- '2.7'
before_install:
2013-02-17 11:12:16 +00:00
- sudo apt-get update
- sudo apt-get install --fix-broken --ignore-missing -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" swig rabbitmq-server ruby
- (git describe && git fetch --tags) || (git remote add upstream git://github.com/saltstack/salt.git && git fetch --tags upstream)
2013-05-30 11:12:31 +00:00
- pip install mock --use-mirrors --mirrors=http://testpypi.python.org/pypi
2013-03-12 03:14:11 +00:00
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
2013-05-30 12:09:41 +00:00
- pip install coveralls
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors --mirrors=http://testpypi.python.org/pypi unittest2 ordereddict; fi"
install: pip install -r requirements.txt --use-mirrors --mirrors=http://testpypi.python.org/pypi
2013-06-02 08:07:39 +00:00
script: "sudo -E /home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/bin/python setup.py test --runtests-opts='--run-destructive --sysinfo -v --coverage --no-coverage-report'"
2012-04-30 23:09:30 +00:00
2013-05-30 22:13:52 +00:00
after_script:
- coveralls
2012-04-30 23:09:30 +00:00
notifications:
irc:
2012-08-25 21:41:39 +00:00
channels: "irc.freenode.org#salt-devel"
2012-04-30 23:09:30 +00:00
on_success: change
on_failure: change