Skip to content

Commit

Permalink
add __init__.py to tests folder
Browse files Browse the repository at this point in the history
Signed-off-by: Lucca Baumgärtner <[email protected]>
  • Loading branch information
luccalb committed Nov 3, 2023
1 parent ec407b2 commit ca10f00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# SPDX-License-Identifier: CC-BY-4.0
# SPDX-FileCopyrightText: 2023 Lucca Baumgärtner <[email protected]>
5 changes: 4 additions & 1 deletion src/test_evp.py → tests/test_evp.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2023 Felix Zailskas <[email protected]>

# sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "src")))
import os
import sys

sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "src")))

from database import get_database
from database.models import LeadValue
Expand Down

0 comments on commit ca10f00

Please sign in to comment.