mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
Merge pull request #32571 from tchaikov/wip-qa-test-runner-run-testcase
qa/tasks/cephfs_test_runner: setattr to class not instance Reviewed-by: Laura Paduano <lpaduano@suse.com>
This commit is contained in:
commit
1bd1328ad7
@ -22,7 +22,11 @@ class DecoratingLoader(loader.TestLoader):
|
||||
|
||||
def _apply_params(self, obj):
|
||||
for k, v in self._params.items():
|
||||
setattr(obj, k, v)
|
||||
if obj.__class__ is type:
|
||||
cls = obj
|
||||
else:
|
||||
cls = obj.__class__
|
||||
setattr(cls, k, v)
|
||||
|
||||
def loadTestsFromTestCase(self, testCaseClass):
|
||||
self._apply_params(testCaseClass)
|
||||
|
Loading…
Reference in New Issue
Block a user