make configuration object arch-specific

This commit is contained in:
2021-03-31 00:04:13 +03:00
parent 4ca2348f0d
commit cf276f2398
21 changed files with 98 additions and 98 deletions

View File

@ -27,7 +27,7 @@ def anyvar(cls: Type[T], strict: bool = False) -> T:
@pytest.fixture
def configuration(resource_path_root: Path) -> Configuration:
path = resource_path_root / "core" / "ahriman.ini"
return Configuration.from_path(path=path, logfile=False)
return Configuration.from_path(path=path, architecture="x86_64", logfile=False)
@pytest.fixture