summaryrefslogtreecommitdiff
path: root/cli.py
diff options
context:
space:
mode:
authorJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2016-08-30 12:12:43 +0200
committerJuergen Ryannel <juergen.bocklage-ryannel@pelagicore.com>2016-11-30 10:01:19 +0100
commit4d35a06705f2707c42f302b40b67f9a74da1c821 (patch)
tree257490c4c517fae31f408c21fcac9bd2575b471e /cli.py
parent1da416044180c3d70a0e0f94ee985df4712c4387 (diff)
downloadqtivi-qface-4d35a06705f2707c42f302b40b67f9a74da1c821.tar.gz
Added copyright statement
Diffstat (limited to 'cli.py')
-rwxr-xr-xcli.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli.py b/cli.py
index a31f574..97a06d7 100755
--- a/cli.py
+++ b/cli.py
@@ -1,4 +1,6 @@
#!/usr/bin/env python3
+# Copyright (c) Pelagicore AG 2016
+
import click
from subprocess import call
from watchdog.events import FileSystemEventHandler
@@ -27,6 +29,7 @@ def antlr():
cwd = str(Path('qface/idl/parser').absolute())
sh('antlr4 -Dlanguage=Python3 -Werror -package qface.idl.parser -o . -listener -visitor T.g4', cwd=cwd)
+
@cli.command()
def test():
sh('python3 -m pytest -v -s -l --pdb')