Revision a352f80f
b/snf-tools/synnefo_tools/burnin.py | ||
---|---|---|
236 | 236 |
log.info("Getting simple and detailed list of images") |
237 | 237 |
cls.client = ComputeClient(API, TOKEN) |
238 | 238 |
cls.plankton = ImageClient(PLANKTON, TOKEN) |
239 |
cls.images = cls.plankton.list_public() |
|
240 |
cls.dimages = cls.plankton.list_public(detail=True) |
|
239 |
cls.images = \ |
|
240 |
filter(lambda x: not x['name'].startswith(SNF_TEST_PREFIX), |
|
241 |
cls.plankton.list_public()) |
|
242 |
cls.dimages = \ |
|
243 |
filter(lambda x: not x['name'].startswith(SNF_TEST_PREFIX), |
|
244 |
cls.plankton.list_public(detail=True)) |
|
241 | 245 |
cls.result_dict = dict() |
242 | 246 |
# Get uniq user id |
243 | 247 |
cls.uuid = _get_user_id() |
Also available in: Unified diff