We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to run tests against a local webserver using --host localhost and --port 4445 as per the TestingBot docs, the tests errors out with:
--host localhost
--port 4445
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='localhost', port=4445): Max retries exceeded with url: /wd/hub/session (Caused by SSLError(SSLError(1, '[SSL: UNKNOWN_PROTOCOL] unknown protocol (_ssl.c:1045)')))
To make this work, the executor url needs to be "http".
executor
PR with fix is incoming.
The text was updated successfully, but these errors were encountered:
Fix issue with using localhost for TestingBot tunnel
ca0f448
Fixes: pytest-dev#216
Fix issue with using localhost for TestingBot tunnel (#217)
fe25750
* Fix issue with using localhost for TestingBot tunnel Fixes: #216
No branches or pull requests
When trying to run tests against a local webserver using
--host localhost
and--port 4445
as per the TestingBot docs, the tests errors out with:urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='localhost', port=4445): Max retries exceeded with url: /wd/hub/session (Caused by SSLError(SSLError(1, '[SSL: UNKNOWN_PROTOCOL] unknown protocol (_ssl.c:1045)')))
To make this work, the
executor
url needs to be "http".PR with fix is incoming.
The text was updated successfully, but these errors were encountered: