summaryrefslogtreecommitdiff
path: root/config.py
blob: 45e2fdf8d45a5e78e4456e84d93f25834c7138ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright (C) 2014  Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

'''Baserock system-test configuration.'''

import os
import socket

# The test host must have passwordless access to this machine. The tests set
# set StrictHostKeyChecking=no for SSH connections so it does not need to be in
# '~/.ssh/known_hosts'.
DEPLOY_URL = 'kvm+ssh://root@extractor.dyn.ducie.codethink.co.uk/'
DEPLOY_PATH = '/var/lib/libvirt/images/'

# This is the hostname and VM name of the machine that gets deployed.
DEPLOY_NAME = 'brtests-%s' % (socket.gethostname())

# Seconds to wait for machine to appear on network before assuming it didn't
# boot or connect to network successfully.
BOOT_TIMEOUT=20

# Command to run for branch and merge commands, and distbuilding. You might
# want to use a custom version of Morph if you're developing a Morph feature.
MORPH_COMMAND = 'morph'

# This is a wart. Morph should handle this itself (ideally by having one
# distbuild controller able to divide jobs among workers of many architectures.
DISTBUILD_INITIATORS = {
    'armv7lhf': '10.24.1.134',
    'x86_32': '10.24.1.136',
    'x86_64': '10.24.1.164',
}

BUILD_TEMPDIR = '/src/tmp'

BRANCH = 'master'

# For debugging. FIXME: would be better if cliapp's logging mechanism supported
# logging to stdout, but .... :(
VERBOSE = True

# Set by the test runner after initialising the fixture directory.
log_dir = None