Up the default timeout for stack builds

This commit ups the default stack build timeout from 600 to 1200.
The stack frequently can take longer than 600 secs to build so
doubling it should give us a safe margin.

Related-Bug: #1297560

Change-Id: I3b13a225793d42e2fa9f4871b2fe81c745954c56
diff --git a/tempest/config.py b/tempest/config.py
index c0ab323..b9fe572 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -559,7 +559,7 @@
                default=1,
                help="Time in seconds between build status checks."),
     cfg.IntOpt('build_timeout',
-               default=600,
+               default=1200,
                help="Timeout in seconds to wait for a stack to build."),
     cfg.StrOpt('instance_type',
                default='m1.micro',