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
no_proxy
Running the Python-3.13.1 test suite with make test, and:
make test
1 test altered the execution environment (env changed): test_urllib2
The offending code pattern in several test cases is:
os.environ['no_proxy'] = '*' # ... ... del os.environ['no_proxy']
Thus if no_proxy already exists in the environment variable, these tests will remove it.
3.13
Linux
The text was updated successfully, but these errors were encountered:
Ah could we use mock.patch.dict instead?
Sorry, something went wrong.
No branches or pull requests
Bug report
Bug description:
Running the Python-3.13.1 test suite with
make test
, and:The offending code pattern in several test cases is:
Thus if
no_proxy
already exists in the environment variable, these tests will remove it.CPython versions tested on:
3.13
Operating systems tested on:
Linux
The text was updated successfully, but these errors were encountered: