mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
95a38461fe
This is the simplest method of preserving the commit history for each file from the salt-cloud repository, although the --follow flag must be given to git log in order to view the full history. This change allows for performing a regular git merge from within the Salt repo without any merge conflicts occuring (since the salt_cloud dir doesn't exist there).
29 lines
1.1 KiB
YAML
29 lines
1.1 KiB
YAML
language: python
|
|
|
|
python:
|
|
- '2.6'
|
|
- '2.7'
|
|
|
|
before_install:
|
|
- sudo apt-get update
|
|
- sudo apt-get install --fix-broken --ignore-missing -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" swig
|
|
- (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"
|
|
- pip install git+https://github.com/saltstack/salt-testing.git#egg=SaltTesting
|
|
|
|
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='-v --coverage'"
|
|
|
|
after_script:
|
|
- coveralls
|
|
|
|
notifications:
|
|
irc:
|
|
channels: "irc.freenode.org#salt-devel"
|
|
on_success: change
|
|
on_failure: change
|