bootstrap-vz/tests/integration/__init__.py
Anders Ingemann e271f3e49a Initial work on integration testing started.
The work consists of three parts:
* Allow for bootstrapping remotely,
  this makes it possible to run the tests
  on e.g. OSX with VirtualBox installed
* Make bootstrapping a fully automated process
  where the manifests can be generated by the tests
  and the tests can call the bootstrapper directly in python
* Create a framework wherein instances can be booted up
  using the bootstrapped images and subsequently tested
2015-04-16 22:15:17 +02:00

9 lines
560 B
Python

import os.path
from bootstrapvz.common.tools import load_data
combine_manifests_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'manifests')
manifests = {'base': load_data(os.path.join(combine_manifests_path, 'base.yml')),
'partitioned': load_data(os.path.join(combine_manifests_path, 'partitioned.yml')),
'unpartitioned': load_data(os.path.join(combine_manifests_path, 'unpartitioned.yml')),
}
build_settings = load_data(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'build_settings.yml'))