1
0
mirror of https://github.com/ceph/ceph synced 2025-04-01 23:02:17 +00:00

Merge pull request 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:
Kefu Chai 2020-01-10 11:28:52 +08:00 committed by GitHub
commit 1bd1328ad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)