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 62b58b4 commit 0c708dfCopy full SHA for 0c708df
graalpython/com.oracle.graal.python.test/src/runner.py
@@ -1243,6 +1243,7 @@ def is_platform_excluded(self, key: str) -> bool:
1243
def get_keys_as_str(self) -> list[str]:
1244
keys = []
1245
for key in sorted(self.keys):
1246
+ if "$" in key: print(f"[WARNING]: Invalid key with $ found in tag keys: {key}, {self.keys}, {self.excluded_keys}")
1247
keys.append(key if key not in self.excluded_keys else f"${key}")
1248
return keys
1249
0 commit comments