______________________ TestThankFlowPost.test_thank_post _______________________ self = <tests.flow_thanks_tests.TestThankFlowPost testMethod=test_thank_post> def test_thank_post(self): """Test thanks for Flow posts.""" site = self.get_site() topic = Topic(site, self._topic_title) for post in reversed(topic.replies()): user = post.creator if site.user() == user.username: continue if user.is_thankable: break else: self.skipTest(NO_THANKABLE_POSTS) before_time = site.getcurrenttimestamp() post.thank() log_entries = site.logevents(logtype='thanks', total=5, page=user, start=before_time, reverse=True) > self.assertTrue(bool(next(log_entries, None))) E AssertionError: False is not true tests/flow_thanks_tests.py:51: AssertionError
Description
Description
Status | Subtype | Assigned | Task | ||
---|---|---|---|---|---|
Open | None | T152961 Improve tests suite | |||
Open | None | T129368 Usages of unittest.expectedFailure or unittest.skip should be solved (goal) | |||
Open | None | T367260 Write test CI github action has ~ 22 failing tests or errors | |||
Declined | None | T367308 TestThankFlowPost.test_thank_post() of flow_thanks_tests fails with AssertionError |