2012-04-30 23:03:38 +00:00
|
|
|
language: python
|
|
|
|
|
2012-04-10 21:38:54 +00:00
|
|
|
python:
|
2013-03-12 03:06:59 +00:00
|
|
|
- '2.6'
|
2012-04-10 21:38:54 +00:00
|
|
|
- '2.7'
|
|
|
|
|
2012-04-30 23:58:19 +00:00
|
|
|
before_install:
|
2013-02-17 11:12:16 +00:00
|
|
|
- sudo apt-get update
|
2013-12-01 00:34:58 +00:00
|
|
|
- sudo apt-get install --fix-broken --ignore-missing -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" swig rabbitmq-server ruby python-apt mysql-server libmysqlclient-dev
|
2013-01-15 22:51:19 +00:00
|
|
|
- (git describe && git fetch --tags) || (git remote add upstream git://github.com/saltstack/salt.git && git fetch --tags upstream)
|
2013-12-01 00:40:52 +00:00
|
|
|
- pip install --use-mirrors --mirrors=http://g.pypi.python.org --mirrors=http://c.pypi.python.org --mirrors=http://pypi.crate.io mock
|
2013-03-12 03:14:11 +00:00
|
|
|
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
|
2013-09-21 16:18:03 +00:00
|
|
|
- pip install --upgrade --use-mirrors --mirrors=http://g.pypi.python.org --mirrors=http://c.pypi.python.org --mirrors=http://pypi.crate.io pep8 'pylint<1.0.0'
|
2013-08-06 17:05:30 +00:00
|
|
|
- pip install --upgrade --use-mirrors --mirrors=http://g.pypi.python.org --mirrors=http://c.pypi.python.org --mirrors=http://pypi.crate.io coveralls
|
2013-06-27 21:04:32 +00:00
|
|
|
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors --mirrors=http://g.pypi.python.org --mirrors=http://c.pypi.python.org --mirrors=http://pypi.crate.io unittest2 ordereddict; fi"
|
2013-06-26 19:58:07 +00:00
|
|
|
- pip install git+https://github.com/saltstack/salt-testing.git#egg=SaltTesting
|
2012-04-30 23:58:19 +00:00
|
|
|
|
2013-12-01 00:34:58 +00:00
|
|
|
install:
|
|
|
|
- pip install -r requirements.txt --use-mirrors --mirrors=http://g.pypi.python.org --mirrors=http://c.pypi.python.org --mirrors=http://pypi.crate.io
|
|
|
|
- pip install -r opt_requirements.txt --use-mirrors --mirrors=http://g.pypi.python.org --mirrors=http://c.pypi.python.org --mirrors=http://pypi.crate.io
|
2013-03-12 03:06:59 +00:00
|
|
|
|
2013-09-21 16:18:03 +00:00
|
|
|
before_script:
|
2013-09-21 16:26:28 +00:00
|
|
|
- "/home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/bin/pylint --rcfile=.testing.pylintrc salt/ && echo 'Finished Pylint Check Cleanly' || echo 'Finished Pylint Check With Errors'"
|
2013-09-21 16:32:40 +00:00
|
|
|
- "/home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/bin/pep8 --ignore=E501,E12 salt/ && echo 'Finished PEP-8 Check Cleanly' || echo 'Finished PEP-8 Check With Errors'"
|
2013-09-21 16:18:03 +00:00
|
|
|
|
2013-09-08 23:04:50 +00:00
|
|
|
script: "sudo -E /home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/bin/python setup.py test --runtests-opts='--run-destructive --sysinfo -v --coverage'"
|
2012-04-30 23:09:30 +00:00
|
|
|
|
2013-07-13 21:49:38 +00:00
|
|
|
after_success:
|
2013-06-05 01:03:36 +00:00
|
|
|
- coveralls
|
2013-05-29 19:01:40 +00:00
|
|
|
|
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
|