diff --git a/app/cli.py b/app/cli.py
index ec2186fd57dd7c520590ab3c478477961ca67e8a..f077c645976e363562c6eab2587a18c55fff9488 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