We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1229d8f commit f5c7ebcCopy full SHA for f5c7ebc
1 file changed
tests/functional/e2e/testcases/parser.py
@@ -2,6 +2,8 @@
2
import os
3
from pathlib import Path
4
5
+from dotenv import load_dotenv
6
+
7
# Path to the shared testcases directory in athena-protobufs
8
_REPO_ROOT = Path(__file__).parent.parent.parent.parent.parent
9
TESTCASES_DIR = _REPO_ROOT / "athena-protobufs" / "testcases"
@@ -25,6 +27,7 @@ def __init__(
25
27
26
28
29
def load_test_cases_by_env() -> list[AthenaTestCase]:
30
+ _ = load_dotenv()
31
return load_test_cases(
32
os.getenv("ATHENA_E2E_TESTCASE_DIR", "integrator_sample")
33
)
0 commit comments