chore: replace flake8 config file and add autoformatting

This commit is contained in:
Robert Kaussow 2021-06-07 22:14:39 +02:00
parent 312568edd5
commit ab5fdc4015
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
3 changed files with 18 additions and 9 deletions

View File

@ -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*

View File

@ -3,10 +3,12 @@ import os
import testinfra.utils.ansible_runner
import warnings
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')
def test_minio_running_and_enabled(host):
@ -24,9 +26,9 @@ def test_minio_conn_error(host):
code = int(
host.run(
"curl -s -w '%{http_code}' http://localhost:61000/minio/health/live -o /dev/null"
).stdout)
body = host.run(
"curl -sX GET http://localhost:61000/minio/prometheus/metrics").stdout
).stdout
)
body = host.run("curl -sX GET http://localhost:61000/minio/prometheus/metrics").stdout
assert code == 200
assert "minio_version_info" in body

12
setup.cfg Normal file
View File

@ -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