How to use _get_playbook_directory method in molecule

Best Python code snippet using molecule_python

test_ansible_playbooks.py

Source:test_ansible_playbooks.py Github

copy

Full Screen

...29 return ansible_playbooks.AnsiblePlaybooks(config_instance)30def test_cleanup_property_is_optional(_instance):31 assert _instance._config.provisioner.playbooks.cleanup is None32def test_create_property(_instance):33 x = os.path.join(_instance._get_playbook_directory(), "docker", "create.yml")34 assert x == _instance._config.provisioner.playbooks.create35def test_converge_property(_instance):36 x = os.path.join(_instance._config.scenario.directory, "converge.yml")37 assert x == _instance._config.provisioner.playbooks.converge38def test_destroy_property(_instance):39 x = os.path.join(_instance._get_playbook_directory(), "docker", "destroy.yml")40 assert x == _instance._config.provisioner.playbooks.destroy41def test_prepare_property(_instance):42 assert _instance._config.provisioner.playbooks.prepare is None43def test_side_effect_property(_instance):44 assert _instance._config.provisioner.playbooks.side_effect is None45def test_verify_property(_instance):46 assert _instance._config.provisioner.playbooks.verify is None47def test_get_playbook_directory(_instance):48 result = _instance._get_playbook_directory()49 parts = pytest.helpers.os_split(result)50 x = ("molecule", "provisioner", "ansible", "playbooks")51 assert x == parts[-4:]52def test_get_playbook(tmpdir, _instance):53 x = os.path.join(_instance._config.scenario.directory, "create.yml")54 util.write_file(x, "")55 assert x == _instance._get_playbook("create")56def test_get_playbook_returns_bundled_driver_playbook_when_local_not_found(57 tmpdir, _instance58):59 x = os.path.join(_instance._get_playbook_directory(), "docker", "create.yml")60 assert x == _instance._get_playbook("create")61@pytest.fixture62def _provisioner_driver_section_data():63 return {64 "provisioner": {65 "name": "ansible",66 "playbooks": {67 "docker": {"create": "docker-create.yml"},68 "create": "create.yml",69 },70 }71 }72@pytest.mark.parametrize(73 "config_instance", ["_provisioner_driver_section_data"], indirect=True...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run molecule automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful