chore(tests): Final stabilization of test suite and full isolation of live_gui artifacts

This commit is contained in:
2026-03-04 01:05:56 -05:00
parent 966b5c3d03
commit 1be6193ee0
18 changed files with 7352 additions and 152 deletions

View File

@@ -89,11 +89,11 @@ def test_gui_track_creation(live_gui) -> None:
client.click('btn_mma_create_track')
time.sleep(2.0)
tracks_dir = 'conductor/tracks/'
# Check the temp workspace created by the live_gui fixture
tracks_dir = 'tests/artifacts/live_gui_workspace/conductor/tracks/'
found = False
# The implementation lowercases and replaces spaces with underscores
search_prefix = track_name.lower().replace(' ', '_')
search_prefix = track_name.lower().replace(' ', '_')
for entry in os.listdir(tracks_dir):
if entry.startswith(search_prefix) and os.path.isdir(os.path.join(tracks_dir, entry)):
found = True