~brendan-donegan/maas/qa-lab-tests_boot_resources_2.0

« back to all changes in this revision

Viewing changes to config.py

  • Committer: Brendan Donegan
  • Date: 2016-06-15 10:06:39 UTC
  • mfrom: (433.2.49 juju2_tests)
  • Revision ID: brendan.donegan@canonical.com-20160615100639-x97krag4dk103b7f
MergeĀ lp:~brendan-donegan/maas/qa-lab-tests_juju2_tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
import os
2
2
import platform
3
 
from utils import is_juju_core
4
3
 
5
4
# Environment variables that can be used to configure
6
5
# what is tested.
26
25
#if is_juju_core():
27
26
#    USE_ARM_NODES = False
28
27
 
29
 
# Whether or not the juju tests should be performed.
30
 
DO_NOT_TEST_JUJU = bool(
31
 
    os.environ.get('DO_NOT_TEST_JUJU', True))
32
 
 
33
28
# Whether or not set the http proxy. Currently only working on raring
34
29
DO_NOT_SET_PROXY = bool("raring" not in platform.linux_distribution())
35
30
 
115
110
    logging-config: <root>=TRACE
116
111
    disable-network-management: true
117
112
"""
 
113
 
 
114
DO_NOT_TEST_JUJU = bool(os.environ.get('DO_NOT_TEST_JUJU', False))