From c29ddbbeed70c214612b7e1fb2a989661ab0de45 Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Wed, 13 Jun 2018 20:22:15 +0900 Subject: [PATCH] Fix test failures caused by django test runner Recently horizon test configuration was changed to use the Django default test runner because nose is in maintenance mode for the past several years [1]. Django testcase and oslotest are incompatible, so congress_dashboard testcase now fails. test_fake.py actually tests nothing, so there is no reason to keep it. It sounds reasonable to drop this file. [1] horizon commit 1f80d94459856a8c477310cc0fe4b0e165d8c0c1 Change-Id: I0b99e709fda9c933ec229bb1dde161cf5bea319b --- congress_dashboard/test/tests/test_fake.py | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 congress_dashboard/test/tests/test_fake.py diff --git a/congress_dashboard/test/tests/test_fake.py b/congress_dashboard/test/tests/test_fake.py deleted file mode 100644 index 2fc9543..0000000 --- a/congress_dashboard/test/tests/test_fake.py +++ /dev/null @@ -1,7 +0,0 @@ -from oslotest import base - - -class TestCase(base.BaseTestCase): - - def test_fake(self): - pass