aboutsummaryrefslogtreecommitdiffstats
path: root/cli.py
diff options
context:
space:
mode:
authorJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2016-08-27 11:21:38 +0200
committerJuergen Ryannel <juergen.bocklage-ryannel@pelagicore.com>2016-11-30 10:01:19 +0100
commit5d4816ccbeac1e9b1c142cdbb2f452e546763feb (patch)
tree8459ac54e08e7217dab97693dc8a821737eb4936 /cli.py
parent51bf7352267588cd0560d016760313e4b0a60efb (diff)
Added test_ci target to cli tool.
Diffstat (limited to 'cli.py')
-rwxr-xr-xcli.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/cli.py b/cli.py
index eb2b530..edace9d 100755
--- a/cli.py
+++ b/cli.py
@@ -27,6 +27,10 @@ def test():
sh('python3 -m pytest -v -s -l --pdb')
+@cli.command()
+def test_ci():
+ sh('python3 -m pytest -v -s -l')
+
class RunTestChangeHandler(FileSystemEventHandler):
def __init__(self, clickContext):
super(RunTestChangeHandler).__init__()