* Makefile: Only run precise-icehouse and trusty-icehouse tests by default
and increase test timeout
* t/00-setup: Simplify dependencies install
* t/README: Mention charm-tools dependency
* t/basic_deployment.py:
- Specify unstable charm deployment
- Use dicts in add_services
- Rename restart test
- Cleanup on test failure
12 lines
330 B
Bash
Executable File
12 lines
330 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
sudo add-apt-repository --yes ppa:juju/stable
|
|
sudo apt-get update --yes
|
|
sudo apt-get install --yes python-amulet \
|
|
python-swiftclient \
|
|
python-glanceclient \
|
|
python-keystoneclient \
|
|
python-novaclient
|