You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment full deployment testing takes over an hour, possibly around two hours, and even regular testing takes quite a while. This slows down development considerably. Find for ways to speed it up. Options include:
Parallelize testing. Allow tests using independent singleton fixtures to execute in parallel. It's not clear how to do that, as pytest doesn't seem to support it.
Remove less important tests, or relegate them to scheduled testing only.
Figure out how to only trigger tests that are relevant to the changes
Figure out how to speed up particularly-slow tests
Figure out how to speed up deployment. E.g. deploy some things in parallel, or get rid of the slow-building jq dependency in cloud deployments.
The text was updated successfully, but these errors were encountered:
At the moment full deployment testing takes over an hour, possibly around two hours, and even regular testing takes quite a while. This slows down development considerably. Find for ways to speed it up. Options include:
The text was updated successfully, but these errors were encountered: