Skip to content

Commit

Permalink
fix gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
themanyfaceddemon committed Aug 12, 2024
1 parent 3c70dfe commit 194eada
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ venv.bak/
build/*
dist/*
*egg-info/*

# tests
test_dir/*
2 changes: 1 addition & 1 deletion Tests/Server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 194eada

Please sign in to comment.