-
-
Save alrocar/36f6549339686bb739f24acf1e5f60ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import requests | |
def pytest_collection_modifyitems(session, config, items): | |
token = os.environ.get('TINYBIRD_TOKEN') | |
if not os.environ.get('GITLAB_CI'): | |
return items | |
response = requests.get(f'https://api.tinybird.co/v0/pipes/sort_tests_by_duration_dont_delete_used_in_ci__v2.json?token={token}') | |
if response.status_code != 200: | |
print("Error while sorting tests from tinybird") | |
return | |
modules_order = response.json()['data'][0]['items'] | |
module_mapping = {item: item.cls.__name__ for item in items if item.cls} | |
modules = list(set(module_mapping.values())) | |
modules_oo = [] | |
for module in modules_order: | |
if module in modules: | |
modules_oo.append(module) | |
sorted_items = items.copy() | |
# Iteratively move tests of each module to the end of the test queue | |
for module in modules_oo: | |
sorted_items = [it for it in sorted_items if module_mapping.get(it, None) != module] + [ | |
it for it in sorted_items if module_mapping.get(it, None) == module | |
] | |
items[:] = sorted_items | |
return items |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment