We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9de5ec0 commit 5a28761Copy full SHA for 5a28761
graalpython/com.oracle.graal.python.test/src/runner.py
@@ -1242,7 +1242,7 @@ def is_platform_excluded(self, key: str) -> bool:
1242
1243
def get_keys_as_str(self) -> list[str]:
1244
keys = []
1245
- for key in self.keys:
+ for key in sorted(self.keys):
1246
keys.append(key if key not in self.excluded_keys else f"${key}")
1247
return keys
1248
@@ -1252,7 +1252,7 @@ def __str__(self):
1252
s += '!'
1253
s += self.test_id.test_name
1254
if self.keys:
1255
- s += f' @ {",".join(sorted(self.get_keys_as_str()))}'
+ s += f' @ {",".join(self.get_keys_as_str())}'
1256
if self.comment:
1257
s = f'{self.comment}{s}'
1258
return s
0 commit comments