Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
alvarolopez committed Jun 7, 2024
1 parent dcffeef commit ce4ab78
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
@@ -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 ce4ab78

Please sign in to comment.