From 0e30e4a5a01bc3cf2f6d36f70e16e0e36a339cf2 Mon Sep 17 00:00:00 2001 From: Mansy Date: Sat, 27 Aug 2022 01:55:22 +0200 Subject: [PATCH] [App][CI] Fix psutil requirement CI (#14413) --- requirements/app/test.txt | 1 + tests/tests_app/cli/test_cli.py | 3 +++ 2 files changed, 4 insertions(+) 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