Remove wrong driver and boiierplate
This commit is contained in:
@ -18,22 +18,21 @@
|
||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
# DEALINGS IN THE SOFTWARE.
|
||||
|
||||
from uuid import uuid4
|
||||
import copy
|
||||
import functools
|
||||
import os
|
||||
import shutil
|
||||
from uuid import uuid4
|
||||
|
||||
import pytest
|
||||
|
||||
from molecule import config, util
|
||||
|
||||
try:
|
||||
from pathlib import Path
|
||||
except ImportError:
|
||||
from pathlib2 import Path
|
||||
|
||||
import pytest
|
||||
|
||||
from molecule import util
|
||||
from molecule import config
|
||||
|
||||
|
||||
@pytest.helpers.register
|
||||
def write_molecule_file(filename, data):
|
||||
@ -55,7 +54,7 @@ def _molecule_dependency_galaxy_section_data():
|
||||
|
||||
@pytest.fixture
|
||||
def _molecule_driver_section_data():
|
||||
return {"driver": {"name": "docker", "options": {"managed": True}}}
|
||||
return {"driver": {"name": "hetznercloud", "options": {"managed": True}}}
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
@ -46,7 +46,7 @@ def _instance(_base_class):
|
||||
def _command_args():
|
||||
return {
|
||||
"dependency_name": "galaxy",
|
||||
"driver_name": "docker",
|
||||
"driver_name": "hetznercloud",
|
||||
"lint_name": "yamllint",
|
||||
"provisioner_name": "ansible",
|
||||
"scenario_name": "default",
|
||||
|
@ -33,7 +33,7 @@ def _molecule_file():
|
||||
os.path.pardir,
|
||||
os.path.pardir,
|
||||
"resources",
|
||||
"molecule_docker.yml",
|
||||
"molecule_hetznercloud.yml",
|
||||
)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user