azure-cli/.travis.yml

20 строки
627 B
YAML
Исходник Обычный вид История

sudo: false
language: python
python:
- "2.7"
- "3.5"
2016-03-10 22:42:52 +03:00
- "3.5-dev" # 3.5 development branch
2016-02-20 03:02:14 +03:00
install:
- pip install virtualenv # used by package_verify script
- pip install -r requirements.txt
2016-03-29 00:33:32 +03:00
- pip install -e . # Install the CLI as a package
2016-03-31 02:30:28 +03:00
- python scripts/command_modules/install.py # Install the command modules as packages
script:
- export PYTHONPATH=$PATHONPATH:./src
- python -m azure.cli -h
- pylint -r n src/azure
2016-03-31 02:30:28 +03:00
- python scripts/command_modules/pylint.py
- python -m unittest discover -s src/azure/cli/tests --buffer
2016-03-31 02:30:28 +03:00
- python scripts/command_modules/test.py
- sh scripts/package_verify.sh