コード例 #1
0
ファイル: terrain.py プロジェクト: chemaper/fiware-sdc
def before_each_feature(feature):
    """
    Hook: Will be executed before each feature. Configures global vars and gets token from keystone.
    Launch agents (puppet and chef) in the target VM
    """
    setup_feature(feature)
    execute_chef_client()
    execute_puppet_agent()
コード例 #2
0
ファイル: terrain.py プロジェクト: jesuspg/fiware-sdc
def before_each_feature(feature):
    """
    Hook: Will be executed before each feature. Configures global vars and gets token from keystone.
    Launch agents (puppet and chef) in the target VM
    """
    setup_feature(feature)
    execute_chef_client()
    execute_puppet_agent()
コード例 #3
0
def before_each_scenario(scenario):
    """
    Hook: Will be executed before each Scenario.
    Setup Scenario: initialize World vars and launch agents (puppet and chef) in the target VM
    """
    setup_scenario(scenario)
    execute_chef_client()
    execute_puppet_agent()