We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a1fc73 + 1813aa9 commit 9b116feCopy full SHA for 9b116fe
tests/api/test_people.py
@@ -116,8 +116,16 @@ def __iter__(self):
116
return iter(self.list)
117
118
def __del__(self):
119
- for person in self.test_people.values():
120
- delete_person(self._api, person)
+ # TODO: Enable test account clean-up.
+ # Licensed privileges aren't taking effect for accounts that have
121
+ # just been created and this is causing some tests to fail.
122
+ # I am temporarily disabling test account clean-up to enable the
123
+ # accounts (with their privileges) to persist. It would be good to
124
+ # find a way around this.
125
+
126
+ # for person in self.test_people.values():
127
+ # delete_person(self._api, person)
128
+ pass
129
130
131
@pytest.fixture(scope="session")
0 commit comments