Skip to content

Commit

Permalink
fix: add runTest method due to pytest bug
Browse files Browse the repository at this point in the history
This is due to a but in pytest. See pytest-dev/pytest#12263
  • Loading branch information
alvarolopez committed Jun 7, 2024
1 parent b769f04 commit ee14d68
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deepaas/tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,7 @@ def flags(self, **kw):
group = kw.pop("group", None)
for k, v in kw.items():
CONF.set_override(k, v, group)

def runTest(self):
"""This is due to https://github.com/pytest-dev/pytest/issues/12263"""
pass

0 comments on commit ee14d68

Please sign in to comment.