-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconftest.py
More file actions
26 lines (24 loc) · 901 Bytes
/
conftest.py
File metadata and controls
26 lines (24 loc) · 901 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
import os
# disable failing plugin import
os.environ["ONETL_PLUGINS_BLACKLIST"] = "failing-plugin"
pytest_plugins = [
"tests.fixtures.processing.fixtures.processing",
"tests.fixtures.processing.fixtures.iceberg",
"tests.fixtures.processing.fixtures.kafka",
"tests.fixtures.create_keytab",
"tests.fixtures.global_hwm_store",
"tests.fixtures.hwm_delta",
"tests.fixtures.spark_mock",
"tests.fixtures.spark",
"tests.fixtures.connections.base",
"tests.fixtures.connections.file_connections",
"tests.fixtures.connections.file_df_connections",
"tests.fixtures.connections.ftp",
"tests.fixtures.connections.ftps",
"tests.fixtures.connections.hdfs",
"tests.fixtures.connections.local_fs",
"tests.fixtures.connections.s3",
"tests.fixtures.connections.sftp",
"tests.fixtures.connections.samba",
"tests.fixtures.connections.webdav",
]