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

Intermittent fixes #8380

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Conversation

djangoliv
Copy link
Contributor

No description provided.

@@ -353,7 +353,7 @@ def get_test_variant(self, test_suite):
base_symbol = test_suite
found_variants = []
for variant in variant_symbols:
if f"-{variant}" in base_symbol:
if f"-{variant}-" in base_symbol:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there are some variants that might not have a -<variant>- pattern, such as eme.

maybe it could be:
if f"-{variant}-" in base_symbol or base_symbol.endswith(variant):

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

Successfully merging this pull request may close these issues.

3 participants