blob: 1cdb74d2e9824b269bfd11e8df15540faf427d95 (
plain)
1
2
3
4
5
6
7
8
9
|
import pytest
import lib.utils.settings
@pytest.fixture(scope="session", autouse=True)
def disable_cache():
# We disable the cache because Nix executes our tests with a non-writable HOME directory.
lib.utils.settings.global_settings._settings['cache_size'] = 0
|