-
Notifications
You must be signed in to change notification settings - Fork 5
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
investigate performance #44
Comments
see also #17 |
Only the python-tuf tests seem slow so this is unlikely to be related to the http server startup/shutdown. |
Quick look at cProfile results implies the issue is Python startup (basically module import) for Potential improvements:
|
The test suite feels a little slow: there should be no need for an individual test to take a perceptible amount of time
My guess is that the pytest integration has lead to infrastructure setup happening for each test: We should really only need one web server (SimulatorServer) as it gives each RepositorySimulator a subdirectory and should be able to serve all of them.
The text was updated successfully, but these errors were encountered: