~canonical-ci-engineering/uci-engine/trunk

« back to all changes in this revision

Viewing changes to juju-deployer/deploy.py

  • Committer: Ubuntu CI Bot
  • Author(s): Celso Providelo
  • Date: 2015-01-07 14:33:28 UTC
  • mfrom: (911.1.8 charms-cleanup)
  • Revision ID: ubuntu_ci_bot-20150107143328-q0d037ojtopm3n9d
Removing the charms from UCI-E since they live in isolated branches now and also adjusting the run-tests to stop loading/running charm tests.

Updating local j-d copy to trunk (r126) for proper support for charm branch pinning. [r=Evan Dandrea]

Show diffs side-by-side

added added

removed removed

Lines of Context:
619
619
    """Run script to collect and upload webui static files."""
620
620
    try:
621
621
        with open('/dev/null', 'w') as devnull:
622
 
            out = subprocess.check_output(
 
622
            subprocess.check_output(
623
623
                ['python', 'bin/webui-collectstatic.py'], stderr=devnull)
624
624
    except subprocess.CalledProcessError as e:
625
 
        print 'Failed to collect webui static files: %s' % out
 
625
        print 'Failed to collect webui static files: %s' % e.output
626
626
        sys.exit(e.returncode)
627
627
 
628
628
 
821
821
 
822
822
    if build:
823
823
        args.append('-b')
 
824
        args.append('-u')
824
825
 
825
826
    args.extend(generated + [name])
826
827