e2e: attempt to fix prospector error again
This commit is contained in:
parent
1319c480c4
commit
1248585dca
|
@ -12,6 +12,7 @@ disable =
|
||||||
signature-differs,
|
signature-differs,
|
||||||
similarities,
|
similarities,
|
||||||
cyclic-import,
|
cyclic-import,
|
||||||
|
protected-access,
|
||||||
unsubscriptable-object # remove when pylint is upgraded to 2.6
|
unsubscriptable-object # remove when pylint is upgraded to 2.6
|
||||||
|
|
||||||
load-plugins=pylint_django,pylint.extensions.bad_builtin
|
load-plugins=pylint_django,pylint.extensions.bad_builtin
|
||||||
|
|
|
@ -156,7 +156,7 @@ def retry(max_retires=3, exceptions=None):
|
||||||
raise exc
|
raise exc
|
||||||
logger.debug("Retrying on error", exc=exc, test=self)
|
logger.debug("Retrying on error", exc=exc, test=self)
|
||||||
self.tearDown()
|
self.tearDown()
|
||||||
self._post_teardown()
|
self._post_teardown() # noqa
|
||||||
self.setUp()
|
self.setUp()
|
||||||
return wrapper(self, *args, **kwargs)
|
return wrapper(self, *args, **kwargs)
|
||||||
|
|
||||||
|
|
Reference in New Issue