chore(tests): Final stabilization of test suite and full isolation of live_gui artifacts
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user