~andreserl/maas/qa-lab-tests-bionic

« back to all changes in this revision

Viewing changes to config.py

  • Committer: Andres Rodriguez
  • Date: 2017-03-02 14:02:52 UTC
  • Revision ID: andreserl@ubuntu.com-20170302140252-qu6t61rjuqb0cc27
Do not use arm nodes

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
# Whether or not the ARM nodes should be used
11
11
# in the test.
12
12
DO_NOT_USE_ARM_NODES = bool(
13
 
    os.environ.get('DO_NOT_USE_ARM_NODES', True))
 
13
    os.environ.get('DO_NOT_USE_ARM_NODES', False))
14
14
 
15
15
USE_ARM_NODES = not DO_NOT_USE_ARM_NODES
16
16
USE_PPC_NODES = bool(os.environ.get('USE_PPC_NODES', False))