progrees i think

This commit is contained in:
Jarno Westhof
2025-02-22 15:48:38 +01:00
parent 59f7147fc4
commit 8c68f23dc7
10 changed files with 845 additions and 723 deletions

View File

@@ -52,7 +52,8 @@ class TestBase(unittest.TestCase):
state = multiworld.get_all_state(False)
for location in multiworld.get_locations():
with self.subTest("Location should be reached", location=location.name):
self.assertTrue(location.can_reach(state), f"{location.name} unreachable")
if not location.can_reach(state):
self.assertTrue(location.can_reach(state), f"{location.name} unreachable")
for region in multiworld.get_regions():
if region.name in unreachable_regions: