Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dkosteck committed Dec 6, 2023
1 parent 419ad5f commit 0cb00fc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sriov/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,10 @@ def pytest_generate_tests(metafunc) -> None:
def elastic_push(settings, testdata):
if settings.config["log_performance_elastic"]:
es = Elasticsearch(
f'https://{settings.config["elastic_host"]}:{settings.config["elastic_port"]}',
(
f'https://{settings.config["elastic_host"]}:'
+ f'{settings.config["elastic_port"]}'
),
verify_certs=False,
# ca_certs=settings.config["elastic_ca_cert_path"],
basic_auth=(
Expand Down

0 comments on commit 0cb00fc

Please sign in to comment.