mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
21 lines
407 B
YAML
21 lines
407 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python-dev
|
|
|
|
install:
|
|
- if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip install importlib; fi
|
|
- "pip install junos-eznc"
|
|
- "pip install jxmlease"
|
|
- "pip install -r requirements/dev_python26.txt"
|
|
- "pip install -r requirements/zeromq.txt"
|
|
- "pip install nose"
|
|
|
|
script: nosetests tests/unit/modules/junos_test.py
|