mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
22 lines
1.1 KiB
YAML
22 lines
1.1 KiB
YAML
language: python
|
|
|
|
python:
|
|
- '2.7'
|
|
|
|
before_install:
|
|
- sudo add-apt-repository -y ppa:saltstack/salt
|
|
- sudo apt-get update
|
|
- sudo apt-get install --fix-broken --ignore-missing -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" swig supervisor rabbitmq-server ruby salt-common
|
|
- (git describe && git fetch --tags) || (git remote add upstream git://github.com/saltstack/salt.git && git fetch --tags upstream)
|
|
- "for i in /usr/lib/python${TRAVIS_PYTHON_VERSION}/dist-packages/*; do ln -s $i /home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/lib/python${TRAVIS_PYTHON_VERSION}/site-packages/ || true; done"
|
|
- pip install mock --use-mirrors --mirrors=http://testpypi.python.org/pypi
|
|
|
|
install: pip install -r requirements.txt --use-mirrors --mirrors=http://testpypi.python.org/pypi
|
|
script: "sudo -E /home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/bin/python setup.py test --runtests-opts='--run-destructive --sysinfo -v'"
|
|
|
|
notifications:
|
|
irc:
|
|
channels: "irc.freenode.org#salt-devel"
|
|
on_success: change
|
|
on_failure: change
|