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

Optimized renaming of test parameter ids #6350

Merged
merged 1 commit into from Dec 16, 2019
Merged

Optimized renaming of test parameter ids #6350

merged 1 commit into from Dec 16, 2019

Commits on Dec 16, 2019

  1. Optimized renaming of test parameter ids

    While using pytest-repeat, I noticed the previous implementation is slow
    for a large number of duplicate test ids. To optimize, this commit
    reduces the amount of data copied and avoids using `in` with List
    (unhashable type, and therefore is very slow for many elements).
    xSetech authored and nicoddemus committed Dec 16, 2019
    Copy the full SHA
    d4879c7 View commit details
    Browse the repository at this point in the history