Load with default path=False in tests.

This commit is contained in:
Matthew Honnibal 2016-10-15 14:13:23 +02:00
parent 08e9134760
commit 9cc9ce0f14

View File

@ -7,11 +7,11 @@ from ..de import German
@pytest.fixture(scope="session")
def EN():
return English(path=None)
return English(path=False)
@pytest.fixture(scope="session")
def DE():
return German(path=None)
return German(path=False)
def pytest_addoption(parser):