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 827ec69 commit d05d3a4Copy full SHA for d05d3a4
mx.graalpython/mx_graalpython.py
@@ -1160,7 +1160,7 @@ def update_import_cmd(args):
1160
exec(f.read(), d, d) # pylint: disable=exec-used;
1161
for suite in d["suite"].get("imports", {}).get("suites", []):
1162
import_name = suite["name"]
1163
- if suite.get("version") and import_name not in local_names:
+ if suite.get("version") and import_name not in local_names and import_name != 'library-tester':
1164
imports_to_update.add(import_name)
1165
1166
revisions = {}
0 commit comments