diff --git a/.vscode/launch.json b/.vscode/launch.json index 1a7af04..1bfcc6c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -22,7 +22,11 @@ "-n", "logical", ], - "console": "integratedTerminal" + "console": "integratedTerminal", + "justMyCode": true, + "env": { + "PYDEVD_DISABLE_FILE_VALIDATION": "1", + } } ] } diff --git a/tests/utils/test_time.py b/tests/utils/test_time.py index f1231a9..7736d00 100644 --- a/tests/utils/test_time.py +++ b/tests/utils/test_time.py @@ -76,3 +76,5 @@ def test_human_timedelta_properties( assert not brief elif short in split_result: assert brief + + assert not (long in split_result and short in split_result)