forked from oriontech-me/langflow-e2e
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (26 loc) · 1.34 KB
/
Copy path.env.example
File metadata and controls
30 lines (26 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# URL of the Langflow instance to test against
# Default: http://localhost:7860/
PLAYWRIGHT_BASE_URL=http://localhost:7860/
# Langflow credentials (used in auth tests)
LANGFLOW_SUPERUSER=langflow
LANGFLOW_SUPERUSER_PASSWORD=langflow
# Echo endpoint for the API Request component tests. Leave empty to use the
# public https://httpbin.org (the default). Resilience to transient httpbin.org
# 5xx outages is handled by a retry in the test (issue #383), so this override
# is optional — set it only to point the tests at a different echo endpoint
# (e.g. a locally self-hosted go-httpbin). The value must be reachable BY
# LANGFLOW — the component's backend makes the request, not the test runner.
# Note: a self-hosted host on a private IP must also be added to Langflow's
# LANGFLOW_SSRF_ALLOWED_HOSTS, and the component's URL validator rejects
# single-label hostnames (use a dotted host or an IP).
HTTPBIN_BASE_URL=
# API keys for integration tests (optional)
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
GOOGLE_API_KEY=
# Model/provider test strategy (auto-detected by priority):
# 1. MODEL_TEST_ID set → runs only the specified model (e.g. gpt-4o-mini)
# 2. MODEL_TEST_PROVIDER set → runs all models for the specified provider (e.g. openai | anthropic | google)
# 3. Neither set → runs all models from models.json
MODEL_TEST_ID=
MODEL_TEST_PROVIDER=