From 109da646824e7f97419ee6fcf9e0069866d15ebb Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 19:42:18 +0000 Subject: [PATCH] fix: CI/CD verification - all tests pass (68/68), linting passes, type checking passes --- tests/test_cli.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 20e311f..f9a7c04 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -4,17 +4,9 @@ import tempfile from pathlib import Path from unittest.mock import MagicMock, patch -import pytest from typer.testing import CliRunner from codexchange.main import app -from codexchange.cli.commands import ( - show_supported_languages, - convert_cmd, - batch_convert_cmd, - list_models_cmd, - list_languages_cmd, -) runner = CliRunner()