4 changed files with 15 additions and 9 deletions
@ -0,0 +1 @@
|
||||
{{cookiecutter.author}}.{{cookiecutter.role_name}}/setup.cfg |
@ -1,5 +0,0 @@
|
||||
[flake8] |
||||
ignore = D101, D102, D103, D105, D107, E402, W503 |
||||
max-line-length = 99 |
||||
inline-quotes = double |
||||
exclude = .git,.tox,__pycache__,build,dist,tests,*.pyc,*.egg-info,.cache,.eggs,env* |
@ -1,9 +1,7 @@
|
||||
import os |
||||
import warnings |
||||
|
||||
import testinfra.utils.ansible_runner |
||||
|
||||
warnings.filterwarnings("ignore", category=DeprecationWarning) |
||||
|
||||
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( |
||||
os.environ["MOLECULE_INVENTORY_FILE"]).get_hosts("all") |
||||
os.environ["MOLECULE_INVENTORY_FILE"] |
||||
).get_hosts("all") |
||||
|
@ -0,0 +1,12 @@
|
||||
[flake8] |
||||
ignore = D100, D101, D102, D103, D105, D107, E402, W503 |
||||
max-line-length = 99 |
||||
inline-quotes = double |
||||
exclude = .git,.tox,__pycache__,build,dist,tests,*.pyc,*.egg-info,.cache,.eggs,env* |
||||
|
||||
[yapf] |
||||
based_on_style = google |
||||
column_limit = 99 |
||||
dedent_closing_brackets = true |
||||
coalesce_brackets = true |
||||
split_before_logical_operator = true |
Loading…
Reference in new issue