Skip to content

Commit

Permalink
feat: [PQ-296] add environment.py to ebollo component
Browse files Browse the repository at this point in the history
  • Loading branch information
TommasoLencioni committed Jan 23, 2025
1 parent 8f44dda commit 5563a89
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/bdd/ebollo/environment.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import logging

from src.conf.configuration import commondata
from src.conf.configuration import secrets
from src.conf.configuration import settings


def before_all(context):
# load settings and secrets into context
context.settings = settings
context.secrets = secrets
context.commondata = commondata

# configure logging setup
logging.basicConfig(level=logging.DEBUG)

0 comments on commit 5563a89

Please sign in to comment.