From 4879814cdc57e69314a39faaff9dfd25a057ac31 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 06:53:03 +0000 Subject: [PATCH] Initial upload: DevDash CLI with TUI dashboard --- tests/conftest.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/conftest.py diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..0cda4fd --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,14 @@ +import pytest +import asyncio +from unittest.mock import AsyncMock, MagicMock, patch +import sys +from pathlib import Path + +sys.path.insert(0, str(Path(__file__).parent.parent)) + + +@pytest.fixture(scope="session") +def event_loop(): + loop = asyncio.get_event_loop_policy().new_event_loop() + yield loop + loop.close()