Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAOS-16821 test: DO NOT LAND debug patch #15543

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/tests/ftest/recovery/pool_membership.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
:avocado: recursive
"""

def tearDown(self):
"""Tear down after each test case."""
self.dmg.server_set_logmasks("DEBUG", raise_exception=False)

Check failure on line 22 in src/tests/ftest/recovery/pool_membership.py

View workflow job for this annotation

GitHub Actions / Pylint check

no-member, Instance of 'PoolMembershipTest' has no 'dmg' member
super().tearDown()
self.dmg.server_set_logmasks(raise_exception=False)

Check failure on line 24 in src/tests/ftest/recovery/pool_membership.py

View workflow job for this annotation

GitHub Actions / Pylint check

no-member, Instance of 'PoolMembershipTest' has no 'dmg' member

# set logmasks back to what was configured

def get_rank_to_free(self):
"""Get the free space for each engine rank.

Expand Down
Loading