forked from feldera/feldera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
41 lines (38 loc) · 754 Bytes
/
Copy path__init__.py
File metadata and controls
41 lines (38 loc) · 754 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
import logging
import os
from feldera.testutils import (
API_KEY,
BASE_URL,
FELDERA_REQUESTS_VERIFY,
TEST_CLIENT,
enterprise_only,
skip_on_arm64,
unique_pipeline_name,
)
from tests.utils import (
KAFKA_BOOTSTRAP,
MINIO_BUCKET,
MINIO_ENDPOINT,
MINIO_REGION,
env_truthy,
required_env,
runs_in_ci,
)
LOGLEVEL = os.environ.get("LOGLEVEL", "INFO").upper()
logging.basicConfig(level=LOGLEVEL)
__all__ = [
"TEST_CLIENT",
"unique_pipeline_name",
"enterprise_only",
"skip_on_arm64",
"API_KEY",
"BASE_URL",
"FELDERA_REQUESTS_VERIFY",
"KAFKA_BOOTSTRAP",
"MINIO_BUCKET",
"MINIO_ENDPOINT",
"MINIO_REGION",
"env_truthy",
"required_env",
"runs_in_ci",
]