Skip to content
Snippets Groups Projects
Commit 1ccdccd0 authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Fix cli run commands

parent 8618e1b8
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ def register(app): ...@@ -16,7 +16,7 @@ def register(app):
"""Daemon commands.""" """Daemon commands."""
pass pass
@daemon.command() @daemon.command('run')
def run_daemon(): def run_daemon():
"""Run daemon""" """Run daemon"""
from app.daemon import Daemon from app.daemon import Daemon
...@@ -28,7 +28,7 @@ def register(app): ...@@ -28,7 +28,7 @@ def register(app):
"""Test commands.""" """Test commands."""
pass pass
@test.command() @test.command('run')
def run_test(): def run_test():
"""Run unit tests.""" """Run unit tests."""
import unittest import unittest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment