~benji/charms/precise/juju-gui/make-etags-ignore-inode

« back to all changes in this revision

Viewing changes to tests/test_deploy.py

  • Committer: Rick Harding
  • Date: 2014-01-16 19:25:52 UTC
  • mto: (148.1.1 git-ify)
  • mto: This revision was merged to the branch mainline in revision 149.
  • Revision ID: rick.harding@canonical.com-20140116192552-jq6o8e9ok3zf6q41
update per review

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
        self.addCleanup(shutil.rmtree, self.source)
52
52
        # Create a file in the source dir.
53
53
        _, self.root_file = tempfile.mkstemp(dir=self.source)
54
 
        # Create a Bazaar repository directory with a file in it.
55
 
        bzr_dir = os.path.join(self.source, '.bzr')
56
 
        os.mkdir(bzr_dir)
57
 
        tempfile.mkstemp(dir=bzr_dir)
58
54
        # Create a tests directory including a .venv directory and a file.
59
55
        self.tests_dir = os.path.join(self.source, 'tests')
60
56
        venv_dir = os.path.join(self.tests_dir, '.venv')