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

Series Ordering and Interleaving #744

Open
Paul-Ferrell opened this issue Feb 29, 2024 · 0 comments
Open

Series Ordering and Interleaving #744

Paul-Ferrell opened this issue Feb 29, 2024 · 0 comments
Assignees
Milestone

Comments

@Paul-Ferrell
Copy link
Collaborator

Within a test set, we need to be able to interleave tests. This will require a new 'interleave' option in series (at both the top and per test_set level).
The most straightforward way to do this is add an option to the 'load()' and 'load_iter()' Resolver object methods, that force the resolver to juggle between each requested test. The end result should be that requests are cycled through, yielding one test per request.

So given requests for tests A, B, C, where A has 4 permutations, B has 4 permutations, and C has 2 sub-tests, We would see:

A.1
B.1
C.a
A.2
B.2
C.b
A.3
B.3
A.4
B.4

Part 2 of this is to add a separate series option to randomize node order for per-node permutations. This might actually be achievable already with chunk.size=1, chunk.selection=random.

@Paul-Ferrell Paul-Ferrell added this to the March 2024 milestone Feb 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants