From ee393f42ed9eb64add27b0932dc045e762f002d6 Mon Sep 17 00:00:00 2001 From: Daniel Diblik Date: Mon, 22 May 2023 16:27:57 +0200 Subject: [PATCH] tests/hotfix/Remove parsing .env in conftest * we do not have any .env file in the repository, the line is redundant Signed-off-by: Daniel Diblik --- tests/integration/conftest.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 8768d084d0..cd6c2c4af9 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -22,8 +22,6 @@ except ImportError: from pathlib2 import Path -env.read_envfile(str(Path(__file__).parents[2] / ".env")) - logging.basicConfig(level="DEBUG" if env.str("DEBUG") else "INFO", stream=sys.stderr) logger = logging.getLogger(__name__)