aboutsummaryrefslogtreecommitdiff
path: root/bigtop-deploy/juju/hadoop-processing/tests
diff options
context:
space:
mode:
authorKevin W Monroe <kevin.monroe@canonical.com>2017-03-20 21:20:22 +0000
committerKevin W Monroe <kevin.monroe@canonical.com>2017-03-21 23:16:58 -0500
commit5c0dc2a29ac174e3f6e6c2ee1a10909b06f08fd0 (patch)
treeef5e9d2b6894ab4df6c2208fd870b9f77364bf59 /bigtop-deploy/juju/hadoop-processing/tests
parent3a987865cc403057efc8dd883b1c3c6c5f536c74 (diff)
BIGTOP-2703: refresh juju bits with metric/CI support (fixes #187)
Signed-off-by: Kevin W Monroe <kevin.monroe@canonical.com>
Diffstat (limited to 'bigtop-deploy/juju/hadoop-processing/tests')
-rwxr-xr-xbigtop-deploy/juju/hadoop-processing/tests/01-bundle.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/bigtop-deploy/juju/hadoop-processing/tests/01-bundle.py b/bigtop-deploy/juju/hadoop-processing/tests/01-bundle.py
index 4fee7237..b10ed225 100755
--- a/bigtop-deploy/juju/hadoop-processing/tests/01-bundle.py
+++ b/bigtop-deploy/juju/hadoop-processing/tests/01-bundle.py
@@ -34,17 +34,6 @@ class TestBundle(unittest.TestCase):
bun = f.read()
bundle = yaml.safe_load(bun)
- # NB: strip machine ('to') placement out. amulet loses our machine spec
- # somewhere between yaml and json; without that spec, charms specifying
- # machine placement will not deploy. This is ok for now because all
- # charms in this bundle are using 'reset: false' so we'll already
- # have our deployment just the way we want it by the time this test
- # runs. However, it's bad. Remove once this is fixed:
- # https://github.com/juju/amulet/issues/148
- for service, service_config in bundle['services'].items():
- if 'to' in service_config:
- del service_config['to']
-
cls.d.load(bundle)
cls.d.setup(timeout=3600)