mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
Add tests for configurable report range, update man page
Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
parent
c8eee25f5b
commit
55ad661e0d
3 changed files with 70 additions and 6 deletions
11
test/test_extensions/debug.py
Executable file
11
test/test_extensions/debug.py
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
|
||||
for line in sys.stdin:
|
||||
# skip configuration
|
||||
if line == "\n":
|
||||
break
|
||||
|
||||
for line in sys.stdin:
|
||||
print(line.strip())
|
Loading…
Add table
Add a link
Reference in a new issue