Commit 2dc32e6c authored by Ivan Tyagov's avatar Ivan Tyagov

With introduction of DeploymentTests that intentionally test

full software compilation from scratch the time to build site is a bit
more than 10h (in crowded testnode infrastructure!). This test was passing ONLY in
cases when shacache download of SR was used but now shacache is
intentionally NOT used thus increase accordingly.
parent 39cb7233
......@@ -20,5 +20,5 @@ class TestSiteStatus(unittest.TestCase):
self.assertTrue(self.status_dict['success'])
def test_build_time(self):
"""Asserts that site was built in less than 9h"""
self.assertLess(self.status_dict['duration'], (3600. * 9))
"""Asserts that site was built in less than 11h"""
self.assertLess(self.status_dict['duration'], (3600. * 11))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment