05d6b57348
* Makefile: - Run flake8 on tests dir - Only run precise-icehouse and trusty-icehouse tests by default and increase test timeout - Fix charm-helpers sync target * t/00-setup: Simplify dependencies install * t/README: Mention charm-tools dependency * t/basic_deployment.py: - Turn off debugging (OpenStackAmuletUtils(ERROR)) - Specify unstable charm deployment - Use dicts in add_services - Rename restart test - Cleanup on restart test failure - Drop fake fail debug function
11 lines
284 B
Bash
Executable File
11 lines
284 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-keystoneclient \
|
|
python-cinderclient \
|
|
python-glanceclient
|