imaginAIry/tests/conftest.py
Bryce 59648dbe61 test: add some tests/logging
add some experiments
2022-09-16 22:21:38 -07:00

18 lines
413 B
Python

import sys
import pytest
from imaginairy import api
from imaginairy.suppress_logs import suppress_annoying_logs_and_warnings
from imaginairy.utils import fix_torch_nn_layer_norm
if "pytest" in str(sys.argv):
suppress_annoying_logs_and_warnings()
@pytest.fixture(scope="session", autouse=True)
def pre_setup():
api.IMAGINAIRY_SAFETY_MODE = "disabled"
with fix_torch_nn_layer_norm():
yield