Skip to content

Commit

Permalink
Disable auto_validation in Http runner connection
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Jan 20, 2024
1 parent f9f2434 commit e7b0f0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def connection(
from openeo_test_suite.lib.process_runner.http import Http

backend_url = get_backend_url(request.config, required=True)
con = openeo.connect(backend_url)
con = openeo.connect(backend_url, auto_validate=False)
if auto_authenticate:
# Temporarily disable output capturing, to make sure that OIDC device code instructions (if any) are visible to the user.
# Note: this is based on `capfd.disabled()`, but compatible with a wide fixture scopes (e.g. session or module)
Expand Down

0 comments on commit e7b0f0f

Please sign in to comment.