~andreserl/maas/fix_qa_lab_tests

« back to all changes in this revision

Viewing changes to config.py

  • Committer: MAAS Lander
  • Author(s): Andres Rodriguez
  • Date: 2017-06-15 23:24:24 UTC
  • mfrom: (496.1.2 qa-lab-tests)
  • Revision ID: maas_lander-20170615232424-ked4uis9vv23xbhq
[r=andreserl][bug=][author=andreserl] Correctly evaluate PAUSE_CI & KEEP_CI_RUNNING.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
# Whether or not to pause the CI. Useful when needing to use
8
8
# a static MAAS instance.
9
 
PAUSE_CI = os.environ.get('PAUSE_CI', False)
 
9
PAUSE_CI = bool(os.environ.get('PAUSE_CI', False))
10
10
 
11
11
# Series to install on deployed nodes.
12
12
NODE_SERIES = os.environ.get('NODE_SERIES', 'xenial')