mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-03 23:20:35 +00:00
12 lines
321 B
Python
12 lines
321 B
Python
![]() |
def test_default_config():
|
||
|
from unstructured.partition.utils.config import env_config
|
||
|
|
||
|
assert env_config.IMAGE_CROP_PAD == 0
|
||
|
|
||
|
|
||
|
def test_env_override(monkeypatch):
|
||
|
monkeypatch.setenv("IMAGE_CROP_PAD", 1)
|
||
|
from unstructured.partition.utils.config import env_config
|
||
|
|
||
|
assert env_config.IMAGE_CROP_PAD == 1
|