Setting 'timeout_disable_debugger_detection' to true in the ini file has no effect.
How to reproduce:
- Set timeout_disable_debugger_detection to true in the ini file
- Launch with debugger attached -> the timeout is ignored
It seems config.getvalue("timeout_disable_debugger_detection") in get_env_settings(config) always returns False and therefore the value in the ini file is never checked.
My suspicion is that the addoption of timeout_disable_debugger_detection initializes the variable to False if not specified (e.g store_false)