1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Subject: Define kwarg_name in pipeline_settings class
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Bug-Debian: https://bugs.debian.org/828653
Date: Fri, 5 Aug 2016 11:30:38 +0000
Last-Update: 2016-08-05
diff --git a/tests/utils.py b/tests/utils.py
index bf1c7ca..c3501dc 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -16,6 +16,7 @@ def _(path):
class pipeline_settings(override_settings):
+ kwarg_name = None
def __init__(self, **kwargs):
self.options = {'PIPELINE': kwargs}
|