Skip to content

Commit ce4ab78

Browse files
committed
fix: add runTest method due to pytest bug
This is due to a but in pytest. See pytest-dev/pytest#12263
1 parent dcffeef commit ce4ab78

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

deepaas/tests/base.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,7 @@ def flags(self, **kw):
7474
group = kw.pop("group", None)
7575
for k, v in kw.items():
7676
CONF.set_override(k, v, group)
77+
78+
def runTest(self):
79+
"""This is due to https://github.com/pytest-dev/pytest/issues/12263"""
80+
pass

0 commit comments

Comments
 (0)