Fabrizio Furnari 1 month ago
parent
commit
e61600ec24
2 changed files with 15 additions and 5 deletions
  1. 14 1
      docs/cli.md
  2. 1 4
      httphound/backend.py

+ 14 - 1
docs/cli.md

@@ -1 +1,14 @@
-TODO
+```
+httphound [-h] [--log-level {DEBUG,INFO,WARNING,ERROR}] [--parallel N] paths [paths ...]
+
+Reverse proxy test tool (async)
+
+positional arguments:
+  paths                 Directories, file patterns, or individual Python files (.py)
+
+options:
+  -h, --help            show this help message and exit
+  --log-level {DEBUG,INFO,WARNING,ERROR}, -l {DEBUG,INFO,WARNING,ERROR}
+                        Set logging level (Default: INFO)
+  --parallel N, -p N    Run tests in parallel with max N concurrent tests
+```

+ 1 - 4
httphound/backend.py

@@ -19,10 +19,7 @@ class BackendConfig:
 
 
 class DummyBackend:
-    """Dummy backend server using aiohttp - Pure Async Implementation
-    
-    This backend runs entirely within the main event loop, eliminating
-    the need for threading or multiple event loops.
+    """Dummy backend server using aiohttp
     """
 
     def __init__(self, config: BackendConfig):