diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-05-14 11:55:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-14 11:55:02 +0300 |
commit | 18b11489cf43fcc251d1cc04e087d8cea191a258 (patch) | |
tree | 239570ce5e7493905cc04563250a3a091a45222d /mesonbuild/mesonmain.py | |
parent | 9b5df6e442672f8e7d6ead666a766234ccf41277 (diff) | |
parent | 95f8cb93b3d0ce99ff99146517625e0d79e848ad (diff) | |
download | meson-18b11489cf43fcc251d1cc04e087d8cea191a258.zip meson-18b11489cf43fcc251d1cc04e087d8cea191a258.tar.gz meson-18b11489cf43fcc251d1cc04e087d8cea191a258.tar.bz2 |
Merge pull request #1775 from mesonbuild/covupdate
Better coverage report
Diffstat (limited to 'mesonbuild/mesonmain.py')
-rw-r--r-- | mesonbuild/mesonmain.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py index 282df36..4fecc58 100644 --- a/mesonbuild/mesonmain.py +++ b/mesonbuild/mesonmain.py @@ -249,6 +249,9 @@ def run_script_command(args): elif cmdname == 'dist': import mesonbuild.scripts.dist as abc cmdfunc = abc.run + elif cmdname == 'coverage': + import mesonbuild.scripts.coverage as abc + cmdfunc = abc.run else: raise MesonException('Unknown internal command {}.'.format(cmdname)) return cmdfunc(cmdargs) |