fix: make pylint happy
This commit is contained in:
parent
b247c6cd84
commit
f595b67f8a
2 changed files with 6 additions and 4 deletions
|
|
@ -69,13 +69,13 @@ class VersionTestCase(DataTestCase):
|
|||
continuum.versioning_manager.transaction_cls = continuum.TransactionFactory()
|
||||
self.teardown_db()
|
||||
|
||||
def make_config(self, **kwargs):
|
||||
def make_config(self, files=None, **kwargs):
|
||||
"""
|
||||
Make and customize the config object.
|
||||
|
||||
We override this to explicitly enable the versioning feature.
|
||||
"""
|
||||
config = super().make_config(**kwargs)
|
||||
config = super().make_config(files=files, **kwargs)
|
||||
config.setdefault("wutta_continuum.enable_versioning", "true")
|
||||
|
||||
# nb. must purge model classes from sys.modules, so they will
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue