diff --git a/requirements/app/test.txt b/requirements/app/test.txt index ab5ef8f1e8..c6a2a61b2c 100644 --- a/requirements/app/test.txt +++ b/requirements/app/test.txt @@ -8,3 +8,4 @@ playwright==1.22.0 httpx trio pympler +psutil diff --git a/tests/tests_app/cli/test_cli.py b/tests/tests_app/cli/test_cli.py index 1edc9d384c..6daa7be5b8 100644 --- a/tests/tests_app/cli/test_cli.py +++ b/tests/tests_app/cli/test_cli.py @@ -169,3 +169,6 @@ def test_cli_logout(exists: mock.MagicMock, unlink: mock.MagicMock, creds: bool) unlink.assert_called_once_with() else: unlink.assert_not_called() + + +# TODO: test for the other commands