From a0d25434dfe587add75f8c74b0317c0d8f975888 Mon Sep 17 00:00:00 2001 From: Akita Noek Date: Wed, 20 Apr 2016 10:49:40 -0400 Subject: [PATCH] Skip old splunk test This should be removed by #1613 --- awx/main/tests/old/commands/commands_monolithic.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/awx/main/tests/old/commands/commands_monolithic.py b/awx/main/tests/old/commands/commands_monolithic.py index c7a030b8a4..8bf81fc68a 100644 --- a/awx/main/tests/old/commands/commands_monolithic.py +++ b/awx/main/tests/old/commands/commands_monolithic.py @@ -935,6 +935,11 @@ class InventoryImportTest(BaseCommandMixin, BaseLiveServerTest): self.assertNotEqual(new_inv.total_groups, 0) self.assertElapsedLessThan(60) + @unittest.skipIf(True, + 'This test is deprecated and being removed from ' + 'integration and unit tests in favor of writing ' + 'an explicit unit test around what the original ' + 'problem was') def test_splunk_inventory(self): new_inv = self.organizations[0].inventories.create(name='splunk') self.assertEqual(new_inv.hosts.count(), 0)