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.
1 parent 16689d3 commit 3a393b5Copy full SHA for 3a393b5
mapswipe_workers/tests/integration/test_update_user_data.py
@@ -18,7 +18,12 @@ def setUp(self):
18
self.user_ids.append(user_id)
19
20
def tearDown(self):
21
- tear_down.delete_test_user(self.user_ids)
+ tear_down.delete_test_user(
22
+ self.user_ids
23
+ # todo: this does not belong here, but for some reason it is needed for cleanup
24
+ # probably because an earlier test does not correctly clean up its firebase users
25
+ + ["test_build_area_heidelberg"]
26
+ )
27
28
def test_no_users_in_postgres(self):
29
"""Test update users when no users are in postgres yet."""
0 commit comments