From 194eadab3a41d6a86060bee674a92fc7172797b9 Mon Sep 17 00:00:00 2001 From: themanyfaceddemon Date: Tue, 13 Aug 2024 00:14:15 +0300 Subject: [PATCH] fix gitignore --- .gitignore | 3 +++ Tests/Server.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8dc7bfe..5106b86 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,6 @@ venv.bak/ build/* dist/* *egg-info/* + +# tests +test_dir/* diff --git a/Tests/Server.py b/Tests/Server.py index d58157a..80b9410 100644 --- a/Tests/Server.py +++ b/Tests/Server.py @@ -10,7 +10,7 @@ class TestServer(unittest.IsolatedAsyncioTestCase): async def asyncSetUp(self): - self.db_path = Path("test_db_dir") + self.db_path = Path("test_dir") self.db_path.mkdir(parents=True, exist_ok=True) self.server = Server('localhost', 8888, self.db_path, 'test_owner_password')