Skip to content

Commit

Permalink
add missing __init__ files, conftest
Browse files Browse the repository at this point in the history
  • Loading branch information
briehl committed Jun 3, 2024
1 parent d41b26a commit 90cd523
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Empty file added lib/__init__.py
Empty file.
Empty file added test/__init__.py
Empty file.
12 changes: 12 additions & 0 deletions test/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import os
from configparser import ConfigParser

import pytest


@pytest.fixture
def config():
config_file = os.environ.get("KB_DEPLOYMENT_CONFIG", None)
config = ConfigParser()
config.read(config_file)
return dict(config.items("NarrativeService"))

0 comments on commit 90cd523

Please sign in to comment.