Bug 1087013: Remove test about slave allocations since it's not required any more r=coop
--- a/mozilla/test/test_slave_allocation.py
+++ b/mozilla/test/test_slave_allocation.py
@@ -13,22 +13,8 @@ class SlaveCheck(unittest.TestCase):
try_slaves = [x for k, s in prod.TRY_SLAVES.iteritems() for x in s]
common_slaves = set(prod_slaves) & set(try_slaves)
self.assertEqual(
common_slaves, set([]),
'Try slaves must not be used in production, however the ' + \
'following slaves used for both:\n%s' % \
'\n'.join(common_slaves)
)
-
- def test_stag_not_in_prod(self):
- prod_slaves = [x for k, s in prod.SLAVES.iteritems() for x in s]
- stag_slaves = [x for k, s in stag.SLAVES.iteritems() for x in s]
- if hasattr(prod, 'TRY_SLAVES'):
- prod_slaves.extend([x for k, s in prod.TRY_SLAVES.iteritems() for x
- in s])
- common_slaves = set(prod_slaves) & set(stag_slaves)
- self.assertEqual(
- set([]), common_slaves,
- 'Staging-only slaves should not be declared as production '
- 'and vice versa. However, the following production slaves '
- 'declared as staging-only:\n%s' % '\n'.join(sorted(common_slaves))
- )