~vthompson/ubuntu-ui-toolkit/expose-pressed-ubuntushape

« back to all changes in this revision

Viewing changes to .bazaar/plugins/makecheck.py

  • Committer: Juhapekka Piiroinen
  • Date: 2013-03-18 15:27:28 UTC
  • mto: This revision was merged to the branch mainline in revision 394.
  • Revision ID: juhapekka.piiroinen@canonical.com-20130318152728-jjple3vh7p33rdkl
new bazaar pre_commit hook for executing make check prior to bzr commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
# Copyright 2013 Canonical Ltd.
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU Lesser General Public License as published by
 
6
# the Free Software Foundation; version 3.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU Lesser General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU Lesser General Public License
 
14
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
#
 
16
# Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
 
17
 
 
18
from bzrlib import branch
 
19
 
 
20
def execute_makecheck(local_branch, master_branch, old_revision_number, old_revision_id, future_revision_number, future_revision_id, tree_delta, future_tree):
 
21
    import os,subprocess
 
22
    from bzrlib import errors
 
23
 
 
24
    if (subprocess.call("make check", shell=True) != 0):
 
25
        raise errors.BzrError("Tests failed, fix them before commit!")
 
26
 
 
27
branch.Branch.hooks.install_named_hook('pre_commit', execute_makecheck, 'make check pre-commit')