Skip to content

Commit

Permalink
fix test: consider additional subfolders
Browse files Browse the repository at this point in the history
  • Loading branch information
denniswittich committed Mar 4, 2025
1 parent ec981e9 commit 30005cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion learning_loop_node/tests/detector/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async def sio_client() -> AsyncGenerator[socketio.AsyncClient, None]:


def get_outbox_files(outbox: Outbox):
files = glob(f'{outbox.path}/**/*', recursive=True)
files = glob(f'{outbox.path}/**/**/*', recursive=True)
return [file for file in files if os.path.isfile(file)]


Expand Down

0 comments on commit 30005cd

Please sign in to comment.