From 8c58a50e8f709a43ebe978a35f081eefdbee1afa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Wed, 18 Oct 2023 12:34:29 +0200 Subject: [PATCH] Add ARGOS_ prefix to env variables used in tests. --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 7a99060..42e7425 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -4,7 +4,7 @@ import pytest from fastapi import FastAPI from httpx import AsyncClient -environ["APP_ENV"] = "test" +environ["ARGOS_APP_ENV"] = "test" @pytest.fixture