We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e0c108 commit e926253Copy full SHA for e926253
tests/test_firstrun.py
@@ -102,6 +102,11 @@ def test_check_any_install(fake_config):
102
def test_check_latest_install(fake_config, monkeypatch):
103
fake_config.default_tag = "1"
104
fake_config.default_platform = "-64"
105
+
106
+ def _fallbacks(cmd):
107
+ return [{"install-for": ["0.0-64"]}]
108
109
+ monkeypatch.setattr(firstrun, "_list_available_fallback_runtimes", _fallbacks)
110
assert firstrun.check_latest_install(fake_config) == False
111
112
fake_config.installs.append({"tag": "1.0-64"})
0 commit comments