mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
22 lines
759 B
YAML
22 lines
759 B
YAML
language: python
|
|
|
|
python:
|
|
- '2.6'
|
|
- '2.7'
|
|
|
|
before_install:
|
|
- sudo add-apt-repository -y ppa:saltstack/salt
|
|
- sudo apt-get update && sudo apt-get install git swig supervisor rabbitmq-server ruby zeromq3
|
|
- (git describe && git fetch --tags) || (git remote add upstream git://github.com/saltstack/salt.git && git fetch --tags upstream)
|
|
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
|
|
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ordereddict; fi"
|
|
|
|
install: pip install -r requirements.txt --use-mirrors
|
|
script: sudo -E python setup.py test --runtests-opts='--run-destructive --sysinfo -v'
|
|
|
|
notifications:
|
|
irc:
|
|
channels: "irc.freenode.org#salt-devel"
|
|
on_success: change
|
|
on_failure: change
|