Skip to content
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

e2e: speed up #310

Merged
merged 1 commit into from
Aug 27, 2024
Merged

e2e: speed up #310

merged 1 commit into from
Aug 27, 2024

Commits on Aug 27, 2024

  1. e2e: speed up

    While working on adding a new e2e to exercise runtimeConfig options, I
    realized that our E2Es are slow partially because we have extended
    intervals for `wait` events - at 30s. This is unfortunate as _the first
    check_ isn't even called for that 30s period, and meant that the no-op
    "wait for object to exist" also took 30s.
    
    This speeds up e2es by removing extra `wait`s, and reducing intervals to
    allow tests to make progress faster when not blocked on a slow
    network/very slow cpus, without making things _worse_ in those cases.
    
    We also move creating the executor into the test setup, as it's required
    for all tests, and we don't currently do per-test namespaces.
    endocrimes committed Aug 27, 2024
    Configuration menu
    Copy the full SHA
    4722c6f View commit details
    Browse the repository at this point in the history