From e5beae636064ac1dbd04a95e5b8b3a42e5e75a5f Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Mon, 15 Feb 2021 21:12:53 +0100 Subject: [PATCH] comment skip of test_add --- orchestra/contrib/lists/tests/functional_tests/tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/orchestra/contrib/lists/tests/functional_tests/tests.py b/orchestra/contrib/lists/tests/functional_tests/tests.py index ef5aa04c..133ab858 100644 --- a/orchestra/contrib/lists/tests/functional_tests/tests.py +++ b/orchestra/contrib/lists/tests/functional_tests/tests.py @@ -83,7 +83,7 @@ class ListMixin(object): backend = backends.MailmanController.get_name() Route.objects.create(backend=backend, match=True, host=server) - @skip("Skip because not exists get_auth_token in orm.api.Api") + # @skip("Skip because not exists get_auth_token in orm.api.Api") def test_add(self): name = '%s_list' % random_ascii(10) password = '@!?%spppP001' % random_ascii(5) @@ -233,6 +233,8 @@ class AdminListMixin(ListMixin): domain_select.select_by_value(str(domain.pk)) name_field.submit() + # import pdb; pdb.set_trace() + # oop = Server.objects.all() self.assertNotEqual(url, self.selenium.current_url) @snapshot_on_error