From 8bfbcec2d7d20c860c2d6d51576906bb8aa6839f Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Fri, 15 Aug 2025 06:01:53 +0300 Subject: [PATCH] test: remove the test for install command GitHub is already reinstalls the library with it with every test --- tests/cli/test_cli.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/cli/test_cli.py b/tests/cli/test_cli.py index c3b19e7..348c1ce 100644 --- a/tests/cli/test_cli.py +++ b/tests/cli/test_cli.py @@ -4,8 +4,7 @@ from unittest.mock import patch, MagicMock import pytest_httpbin from scrapling.cli import ( - install, shell, mcp, - get, post, put, delete, fetch, stealthy_fetch + shell, mcp, get, post, put, delete, fetch, stealthy_fetch ) @@ -21,11 +20,6 @@ class TestCLI: def runner(self): return CliRunner() - def test_install_command(self, runner): - """Test install command""" - result = runner.invoke(install) - assert result.exit_code == 0 - def test_shell_command(self, runner): """Test shell command""" with patch('scrapling.core.shell.CustomShell') as mock_shell: