From 1ccdccd0bc2b450a9504b950f8842aab287a239e Mon Sep 17 00:00:00 2001 From: Patrick Jentsch <p.jentsch@uni-bielefeld.de> Date: Wed, 22 Sep 2021 14:13:59 +0200 Subject: [PATCH] Fix cli run commands --- app/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/cli.py b/app/cli.py index ec2186fd..f077c645 100644 --- a/app/cli.py +++ b/app/cli.py @@ -16,7 +16,7 @@ def register(app): """Daemon commands.""" pass - @daemon.command() + @daemon.command('run') def run_daemon(): """Run daemon""" from app.daemon import Daemon @@ -28,7 +28,7 @@ def register(app): """Test commands.""" pass - @test.command() + @test.command('run') def run_test(): """Run unit tests.""" import unittest -- GitLab