forked from juju/amulet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
20 lines (20 loc) · 839 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: python
sudo: required
python:
- "2.7"
- "3.3"
before_install:
- sudo add-apt-repository -y ppa:juju/stable
- sudo apt-get update
- sudo apt-get install juju-core bzr
- echo 'NAME="Ubuntu"' | sudo tee /etc/os-release
- echo 'VERSION="14.04.2 LTS, Trusty Tahr"' | sudo tee -a /etc/os-release
- echo 'ID=ubuntu' | sudo tee -a /etc/os-release
- echo 'ID_LIKE=debian' | sudo tee -a /etc/os-release
- echo 'PRETTY_NAME="Ubuntu 14.04.2 LTS"' | sudo tee -a /etc/os-release
- echo 'VERSION_ID="14.04"' | sudo tee -a /etc/os-release
- echo 'HOME_URL="http://www.ubuntu.com/"' | sudo tee -a /etc/os-release
install: "pip install -e .; pip install -r test-requires.txt; pip install python-coveralls"
script: "nosetests --nologcapture --with-coverage --cover-package=amulet -e functional"
after_success:
- coveralls