From 24127f6323aa4ada00f2d602c11b8db2b46edd17 Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Mon, 13 Nov 2023 19:49:41 +0400 Subject: [PATCH] No need to check output as it depends on platform --- meta_package_manager/tests/test_cli.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta_package_manager/tests/test_cli.py b/meta_package_manager/tests/test_cli.py index 32407c588..bd8a7a81c 100644 --- a/meta_package_manager/tests/test_cli.py +++ b/meta_package_manager/tests/test_cli.py @@ -160,8 +160,6 @@ def test_timeout(self, invoke): """Check that the CLI exits with an error when a timeout is reached.""" result = invoke("--timeout", "1", "outdated") assert result.exit_code == 1 - assert not result.stdout - assert not result.stderr assert isinstance(result.exception, subprocess.TimeoutExpired) @pytest.mark.parametrize(