Skip to content
Snippets Groups Projects
0_setup.py 323 B
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os

import utils


def setup(interactive=True):
    # retrieve a configuration attribute to test it
    utils.log('Working dir: "%s".' % os.getcwd())
    branch = utils.get_conf('ENVSETUP_BRANCH')
    utils.log('Branch is "%s".' % branch)
    utils.success('Test OK.')