Support dropping sh dependency
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Luke Murphy
2021-01-06 13:09:05 +01:00
parent 8e06794f3c
commit 781e7ec7bb
5 changed files with 49 additions and 70 deletions

View File

@ -1,8 +1,6 @@
import os
import pytest
import sh
from molecule import util
from molecule.command.init import base
from molecule.model import schema_v3
@ -57,5 +55,5 @@ def test_drivers(
assert {} == schema_v3.validate(data)
cmd = sh.yamllint.bake("-s", _molecule_file)
cmd = ["yamllint", "-s", _molecule_file]
pytest.helpers.run_command(cmd)