-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
Optimize test suite #537
Comments
Here are some of the external URLs I've noticed that we depend on in the unit tests while replacing httpbin:
Others, if there are any, should pop up when the above are fixed and we run the tests locally without an internet connection. |
Something else that popped up, it seems like some of the tests can have huge memory leaks: #814 |
I am closing this as all but 1 change was made, and I have moved it to a specific issue #2302, please if any specific problems are noticed – open a specific issue for them instead of an “epic”. |
Currently the test suite is somewhat slow, and would probably become even slower after we start using the
-race
flag and add more tests. Steps:t.Parallel()
. This should happen after the race conditions are fixed if we want to avoid headaches.The text was updated successfully, but these errors were encountered: