Revision 60a80953 snf-tools/synnefo_tools/burnin/__init__.py

b/snf-tools/synnefo_tools/burnin/__init__.py
48 48
from synnefo_tools.burnin.server_tests import ServerTestSuite
49 49
from synnefo_tools.burnin.network_tests import NetworkTestSuite
50 50
from synnefo_tools.burnin.stale_tests import \
51
    StaleServersTestSuite, StaleNetworksTestSuite
51
    StaleServersTestSuite, StaleFloatingIPsTestSuite, StaleNetworksTestSuite
52 52

  
53 53

  
54 54
# --------------------------------------------------------------------
......
66 66
STALE_TESTSUITES = [
67 67
    # Must be runned in this order
68 68
    StaleServersTestSuite,
69
    StaleFloatingIPsTestSuite,
69 70
    StaleNetworksTestSuite,
70 71
]
71 72
STALE_TSUITES_NAMES = [tsuite.__name__ for tsuite in STALE_TESTSUITES]
......
113 114
        help="Disable IPv6 related tests")
114 115
    parser.add_option(
115 116
        "--action-timeout", action="store",
116
        type="int", default=300, dest="action_timeout", metavar="TIMEOUT",
117
        type="int", default=420, dest="action_timeout", metavar="TIMEOUT",
117 118
        help="Wait TIMEOUT seconds for a server action to complete, "
118 119
             "then the test is considered failed")
119 120
    parser.add_option(
120 121
        "--action-warning", action="store",
121
        type="int", default=120, dest="action_warning", metavar="TIMEOUT",
122
        type="int", default=180, dest="action_warning", metavar="TIMEOUT",
122 123
        help="Warn if TIMEOUT seconds have passed and a server action "
123 124
             "has not been completed yet")
124 125
    parser.add_option(

Also available in: Unified diff