make setUp timeout

This commit is contained in:
Sergey Dudoladov 2019-05-02 13:32:32 +02:00
parent cb9c77edcb
commit f9d145c1b1
1 changed files with 2 additions and 1 deletions

View File

@ -12,10 +12,11 @@ class SmokeTestCase(unittest.TestCase):
Test the most basic functions of the operator. Test the most basic functions of the operator.
''' '''
TEST_TIMEOUT_SEC = 240 TEST_TIMEOUT_SEC = 300
RETRY_TIMEOUT_SEC = 5 RETRY_TIMEOUT_SEC = 5
@classmethod @classmethod
@timeout_decorator.timeout(TEST_TIMEOUT_SEC)
def setUpClass(cls): def setUpClass(cls):
''' '''
Deploy operator to a "kind" cluster created by /e2e/run.sh using examples from /manifests. Deploy operator to a "kind" cluster created by /e2e/run.sh using examples from /manifests.