We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71599e6 commit 0144c9fCopy full SHA for 0144c9f
1 file changed
eval_protocol/cli_commands/local_test.py
@@ -5,7 +5,6 @@
5
import sys
6
from typing import List
7
8
-from ..auth import get_dotenv_values
9
from .utils import _build_entry_point, _discover_and_select_tests
10
11
@@ -72,12 +71,6 @@ def _run_pytest_in_docker(
72
71
workdir,
73
]
74
75
- # Forward environment variables from .env file to the container
76
- dotenv_vars = get_dotenv_values(project_root)
77
- for key, value in dotenv_vars.items():
78
- if value is not None:
79
- cmd += ["-e", f"{key}={value}"]
80
-
81
# If EP_SUMMARY_JSON is set on the host, mirror it into the container so that
82
# pytest evaluation tests can write summary artifacts that are visible to the
83
# host. We map paths under the host logs directory (~/.eval_protocol) into the
0 commit comments