test: remove the test for install command

GitHub is already reinstalls the library with it with every test
This commit is contained in:
Karim shoair
2025-08-15 06:01:53 +03:00
parent 0e3358007f
commit 8bfbcec2d7
+1 -7
View File
@@ -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: