summaryrefslogtreecommitdiff
path: root/config.py
blob: e53b66aa362f59c0a3ac5b7cf68986205e3da7f7 (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
# 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

# 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://sam@landfill.ducie.codethink.co.uk/'
DEPLOY_PATH = '/home/VIRT-IMAGES/'

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

# FIXME: building should automatically use the version of Morph from the system
# branch, really ... but for now, if the installed Morph can't build
# baserock:baserock/morphs 'master' branch, you can change this!
os.environ['PYTHONPATH'] = '/src/morph'
MORPH_COMMAND = ['/src/morph/morph', '--no-git-update']
#MORPH_COMMAND = '/src/morph/morph'
#MORPH_COMMAND = 'morph'

BUILD_TEMPDIR = '/src/tmp'

#BRANCH = 'master'
BRANCH = 'baserock/sam/trove-upgrades'

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