Bump python version in CI

This commit is contained in:
Kovid Goyal
2026-04-19 21:35:13 +05:30
parent 3a598218d3
commit 9bb359e1ef
2 changed files with 6 additions and 6 deletions

View File

@@ -51,7 +51,7 @@ def find_all_tests(package: str = '', excludes: Sequence[str] = ('main', 'gr'))
suits = []
if not package:
package = __name__.rpartition('.')[0] if '.' in __name__ else 'kitty_tests'
for x in contents(package):
for x in sorted(contents(package)):
name, ext = os.path.splitext(x)
if ext in ('.py', '.pyc') and name not in excludes:
m = importlib.import_module(package + '.' + x.partition('.')[0])