cache-env / tests /conftest.py
Parv Pareek
done
e75c8ce
raw
history blame contribute delete
162 Bytes
import pytest
@pytest.fixture(autouse=True)
def reset_env_singleton():
import server.app as sa
sa._singleton = None
yield
sa._singleton = None