feat(collab): launch JZAO-only HoloLake stage one
This commit is contained in:
parent
01e8c2ec5c
commit
1dd4a6a39e
17 changed files with 492 additions and 21 deletions
|
|
@ -67,6 +67,14 @@ class MultipathConsoleTest(unittest.TestCase):
|
|||
self.assertTrue(any(item.startswith("AUTONOMOUS_DECISION_FIELDS_REQUIRED") for item in errors))
|
||||
self.assertIn("AUTONOMOUS_DECISION_BRAIN_READBACK_INVALID", errors)
|
||||
|
||||
def test_all_development_roots_are_on_jzao_and_cleanup_is_reviewed(self):
|
||||
panel = MODULE.panel()
|
||||
devenv = panel["development_environment"]
|
||||
roots = [*devenv["source_roots"].values(), *devenv["generated_output_roots"].values()]
|
||||
self.assertTrue(all(path.startswith("/Volumes/JZAO/") for path in roots))
|
||||
self.assertFalse(panel["cleaning_handoff"]["direct_delete_allowed"])
|
||||
self.assertFalse(panel["cleaning_handoff"]["whole_disk_discovery"])
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
|
|
|
|||
Loading…
Reference in a new issue