From f2a53481c96b88f83357a3312f04cc98bb7d8ca2 Mon Sep 17 00:00:00 2001 From: Sasha Malahov Date: Fri, 14 Aug 2026 09:58:07 -0400 Subject: [PATCH 1/3] fix: add edge case validation to CLI and workflow (#58) - TrainingConfig.__post_init__ validates tickers, positions on init - build_config validates empty tickers, empty/invalid positions, zero/negative values - print_results handles empty workflow results gracefully (no crash) - _json_string already rejects invalid JSON with meaningful messages - Added 18 new tests covering all edge cases --- alloc/cli.py | 56 ++++++++++ alloc/utils/workflow.py | 32 ++++++ tests/test_cli.py | 228 +++++++++++++++++++++++++++++++++++++++- tests/test_workflow.py | 45 ++++++++ tickets/TICKET-037.md | 18 ++++ 5 files changed, 378 insertions(+), 1 deletion(-) create mode 100644 tickets/TICKET-037.md diff --git a/alloc/cli.py b/alloc/cli.py index 8ba1089..c909a6c 100644 --- a/alloc/cli.py +++ b/alloc/cli.py @@ -378,7 +378,41 @@ def build_config(args: argparse.Namespace) -> TrainingConfig: ------- TrainingConfig Fully populated configuration object. + + Raises + ------ + ValueError + If tickers list is empty, positions contain zero/negative values, + or positions JSON is invalid. """ + # Validate tickers list is not empty + if not args.ticker_list: + raise ValueError( + "Tickers list is empty. Provide at least one ticker via --tickers." + ) + + # Validate positions is a non-empty dict + if not isinstance(args.positions_values, dict): + type_name = type(args.positions_values).__name__ + raise ValueError( + f"Positions must be a JSON object (dict), got {type_name}. " + "Use --positions-values with valid JSON." + ) + + if not args.positions_values: + raise ValueError( + "Positions dictionary is empty. " + "Provide at least one position via --positions-values." + ) + + # Validate no zero or negative position values + for ticker, value in args.positions_values.items(): + if value <= 0: + raise ValueError( + f"Position value for '{ticker}' is {value}. " + "All position values must be strictly positive." + ) + return TrainingConfig( tickers=args.ticker_list, positions=args.positions_values, @@ -405,16 +439,38 @@ def build_config(args: argparse.Namespace) -> TrainingConfig: def print_results(result: "WorkflowResult") -> None: """Print workflow results in a structured, human-readable format. + Handles empty workflow results gracefully by logging an informative + message instead of crashing. + Parameters ---------- result : WorkflowResult The result returned by :meth:`WorkflowRunner.run`. """ best = result.best_trial + + # Handle missing best_trial if best is None: logger.warning("No best trial in results") return + # Handle placeholder/empty best_trial (iteration=0 means no real trial ran) + if best.iteration == 0 and not best.allocation: + logger.warning( + "Workflow completed but no valid trial results were produced. " + "Status: %s", + result.status, + ) + return + + # Handle empty trials list (log warning but still show best_trial if valid) + if not result.trials: + logger.warning( + "Workflow completed with no trials recorded. " + "Status: %s. Showing best_trial from result.", + result.status, + ) + logger.info("=" * 60) logger.info("WORKFLOW COMPLETE") logger.info("=" * 60) diff --git a/alloc/utils/workflow.py b/alloc/utils/workflow.py index 6331bb4..84df222 100644 --- a/alloc/utils/workflow.py +++ b/alloc/utils/workflow.py @@ -55,6 +55,12 @@ class TrainingConfig: Target final portfolio value. target_outperformance : float Target outperformance percentage. + + Raises + ------ + ValueError + If tickers list is empty, positions dict is empty, or any + position value is zero or negative. """ tickers: list[str] @@ -72,6 +78,32 @@ class TrainingConfig: target_value: float = 220_000.0 target_outperformance: float = 15.0 + def __post_init__(self) -> None: + """Validate configuration after initialization. + + Raises + ------ + ValueError + If tickers list is empty, positions dict is empty, or any + position value is zero or negative. + """ + if not self.tickers: + raise ValueError( + "Tickers list is empty. Provide at least one ticker." + ) + + if not self.positions: + raise ValueError( + "Positions dictionary is empty. Provide at least one position." + ) + + for ticker, value in self.positions.items(): + if value <= 0: + raise ValueError( + f"Position value for '{ticker}' is {value}. " + "All position values must be strictly positive." + ) + @dataclass class TrainingTrial: diff --git a/tests/test_cli.py b/tests/test_cli.py index da2c417..b487747 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -526,10 +526,11 @@ def test_prints_centroid(self, caplog: Any) -> None: def test_no_best_trial_warns(self, caplog: Any) -> None: import logging caplog.set_level(logging.WARNING) + # When trials exist but best_trial is None, we get "No best trial" result = WorkflowResult( status="error", best_trial=None, # type: ignore[arg-type] - trials=[], + trials=[TrainingTrial(iteration=1, update=0)], allocation_stats={}, concentration={}, metrics_progression=[], @@ -590,6 +591,7 @@ def test_main_success_exit_code(self) -> None: patch("alloc.core.create_trainer") as mock_create_trainer: mock_parse.return_value = MagicMock( ticker_list=["AAPL"], + positions_values={"AAPL": 50000.0}, iterations=1, update_iterations=1, conservative=False, @@ -619,6 +621,7 @@ def test_main_workflow_fail_exit_code(self) -> None: patch("alloc.core.create_trainer") as mock_create_trainer: mock_parse.return_value = MagicMock( ticker_list=["AAPL"], + positions_values={"AAPL": 50000.0}, iterations=1, update_iterations=1, conservative=False, @@ -639,6 +642,7 @@ def test_main_exception_returns_workflow_fail(self) -> None: patch("alloc.core.create_trainer") as mock_create_trainer: mock_parse.return_value = MagicMock( ticker_list=["AAPL"], + positions_values={"AAPL": 50000.0}, iterations=1, update_iterations=1, conservative=False, @@ -670,6 +674,7 @@ def test_main_calls_workflow_runner(self) -> None: patch("alloc.core.create_trainer") as mock_create_trainer: mock_parse.return_value = MagicMock( ticker_list=["AAPL"], + positions_values={"AAPL": 50000.0}, iterations=1, update_iterations=1, conservative=False, @@ -701,6 +706,7 @@ def test_main_passes_conservative_to_create_trainer(self) -> None: patch("alloc.core.create_trainer") as mock_create_trainer: mock_parse.return_value = MagicMock( ticker_list=["AAPL"], + positions_values={"AAPL": 50000.0}, iterations=1, update_iterations=1, conservative=True, @@ -751,6 +757,7 @@ def test_main_builds_config(self) -> None: patch("alloc.core.create_trainer") as mock_create_trainer: mock_args = MagicMock( ticker_list=["AAPL"], + positions_values={"AAPL": 50000.0}, iterations=1, update_iterations=1, conservative=False, @@ -805,3 +812,222 @@ def test_main_module_has_main(self) -> None: """alloc.__main__ exposes main from alloc.cli.""" from alloc.__main__ import main as main_entry assert callable(main_entry) + + +# =================================================================== +# Edge case validation tests (issue #58) +# =================================================================== + + +class TestBuildConfigEdgeCases: + """Tests for build_config edge case validation.""" + + def test_empty_tickers_raises_value_error(self) -> None: + """build_config raises ValueError when tickers list is empty.""" + args = MagicMock( + ticker_list=[], + positions_values={"AAPL": 50000.0}, + iterations=1, + update_iterations=1, + trading_days=222, + batch_size=22, + min_allocation=0.001, + concentration_penalty=0.001, + transaction_cost=0.0, + risk_aversion=0.001, + min_cash_allocation=0.05, + target_sharpe=2.1, + target_value=220000.0, + target_outperformance=15.0, + ) + with pytest.raises(ValueError, match="Tickers list is empty"): + build_config(args) + + def test_zero_position_raises_value_error(self) -> None: + """build_config raises ValueError when a position value is zero.""" + args = MagicMock( + ticker_list=["AAPL"], + positions_values={"AAPL": 0.0}, + iterations=1, + update_iterations=1, + trading_days=222, + batch_size=22, + min_allocation=0.001, + concentration_penalty=0.001, + transaction_cost=0.0, + risk_aversion=0.001, + min_cash_allocation=0.05, + target_sharpe=2.1, + target_value=220000.0, + target_outperformance=15.0, + ) + with pytest.raises(ValueError, match="Position value for 'AAPL' is 0"): + build_config(args) + + def test_negative_position_raises_value_error(self) -> None: + """build_config raises ValueError when a position value is negative.""" + args = MagicMock( + ticker_list=["AAPL"], + positions_values={"AAPL": -100.0}, + iterations=1, + update_iterations=1, + trading_days=222, + batch_size=22, + min_allocation=0.001, + concentration_penalty=0.001, + transaction_cost=0.0, + risk_aversion=0.001, + min_cash_allocation=0.05, + target_sharpe=2.1, + target_value=220000.0, + target_outperformance=15.0, + ) + with pytest.raises(ValueError, match="Position value for 'AAPL' is -100"): + build_config(args) + + def test_empty_positions_dict_raises_value_error(self) -> None: + """build_config raises ValueError when positions dict is empty.""" + args = MagicMock( + ticker_list=["AAPL"], + positions_values={}, + iterations=1, + update_iterations=1, + trading_days=222, + batch_size=22, + min_allocation=0.001, + concentration_penalty=0.001, + transaction_cost=0.0, + risk_aversion=0.001, + min_cash_allocation=0.05, + target_sharpe=2.1, + target_value=220000.0, + target_outperformance=15.0, + ) + with pytest.raises(ValueError, match="Positions dictionary is empty"): + build_config(args) + + def test_non_dict_positions_raises_value_error(self) -> None: + """build_config raises ValueError when positions is not a dict.""" + args = MagicMock( + ticker_list=["AAPL"], + positions_values="not a dict", + iterations=1, + update_iterations=1, + trading_days=222, + batch_size=22, + min_allocation=0.001, + concentration_penalty=0.001, + transaction_cost=0.0, + risk_aversion=0.001, + min_cash_allocation=0.05, + target_sharpe=2.1, + target_value=220000.0, + target_outperformance=15.0, + ) + with pytest.raises(ValueError, match="Positions must be a JSON object"): + build_config(args) + + +class TestPrintResultsEmptyWorkflow: + """Tests for print_results graceful handling of empty workflow results.""" + + def test_empty_trials_logs_warning(self, caplog: Any) -> None: + """print_results logs warning when no trials were completed and best_trial is placeholder.""" + import logging + caplog.set_level(logging.WARNING) + result = WorkflowResult( + status="error", + best_trial=TrainingTrial(iteration=0, update=0, allocation=[]), + trials=[], + allocation_stats={}, + concentration={}, + metrics_progression=[], + ) + print_results(result) + assert "no valid trial" in caplog.text.lower() + + def test_empty_trials_with_valid_best_still_shows(self, caplog: Any) -> None: + """print_results warns about empty trials but still shows valid best_trial.""" + import logging + caplog.set_level(logging.INFO) + result = WorkflowResult( + status="success", + best_trial=TrainingTrial( + iteration=1, update=0, sharpe_ratio=2.0, + outperformance=10.0, final_value=120000.0, + model_roi=20.0, buyhold_roi=10.0, + allocation=[0.5, 0.5], + ), + trials=[], + allocation_stats={}, + concentration={}, + metrics_progression=[], + ) + print_results(result) + # Should warn about no trials but still show results + assert "no trials" in caplog.text.lower() + assert "WORKFLOW COMPLETE" in caplog.text + + def test_empty_best_trial_logs_warning(self, caplog: Any) -> None: + """print_results logs warning when best_trial is placeholder (iteration=0).""" + import logging + caplog.set_level(logging.WARNING) + result = WorkflowResult( + status="error", + best_trial=TrainingTrial(iteration=0, update=0, allocation=[]), + trials=[TrainingTrial(iteration=0, update=0, allocation=[])], + allocation_stats={}, + concentration={}, + metrics_progression=[], + ) + print_results(result) + assert "no valid trial" in caplog.text.lower() + + def test_none_best_trial_logs_warning(self, caplog: Any) -> None: + """print_results logs warning when best_trial is None.""" + import logging + caplog.set_level(logging.WARNING) + result = WorkflowResult( + status="error", + best_trial=None, # type: ignore[arg-type] + trials=[TrainingTrial(iteration=1, update=0)], + allocation_stats={}, + concentration={}, + metrics_progression=[], + ) + print_results(result) + assert "No best trial" in caplog.text + + +class TestJsonStringInvalidInput: + """Tests for _json_string with invalid JSON input.""" + + def test_invalid_json_raises_argument_type_error(self) -> None: + """_json_string raises ArgumentTypeError on malformed JSON.""" + with pytest.raises(argparse.ArgumentTypeError, match="not valid JSON"): + _json_string("{invalid json}") + + def test_json_array_raises_argument_type_error(self) -> None: + """_json_string raises ArgumentTypeError when JSON is an array.""" + with pytest.raises(argparse.ArgumentTypeError, match="must be a JSON object"): + _json_string('[1, 2, 3]') + + def test_json_string_raises_argument_type_error(self) -> None: + """_json_string raises ArgumentTypeError when JSON is a string.""" + with pytest.raises(argparse.ArgumentTypeError, match="must be a JSON object"): + _json_string('"just a string"') + + def test_json_number_raises_argument_type_error(self) -> None: + """_json_string raises ArgumentTypeError when JSON is a number.""" + with pytest.raises(argparse.ArgumentTypeError, match="must be a JSON object"): + _json_string('42') + + def test_json_null_raises_argument_type_error(self) -> None: + """_json_string raises ArgumentTypeError when JSON is null.""" + with pytest.raises(argparse.ArgumentTypeError, match="must be a JSON object"): + _json_string('null') + + def test_json_with_non_numeric_value_raises(self) -> None: + """_json_string raises ArgumentTypeError when value is non-numeric.""" + with pytest.raises(argparse.ArgumentTypeError, match="must be numeric"): + _json_string('{"AAPL": "not_a_number"}') diff --git a/tests/test_workflow.py b/tests/test_workflow.py index 47e57ef..ffc0433 100644 --- a/tests/test_workflow.py +++ b/tests/test_workflow.py @@ -492,3 +492,48 @@ def test_hhi_formula_correctness(self) -> None: metrics = WorkflowRunner._concentration_metrics(trials) expected_hhi = 0.6**2 + 0.3**2 + 0.1**2 # 0.36 + 0.09 + 0.01 = 0.46 assert metrics["herfindahl"] == pytest.approx(expected_hhi) + + +# --------------------------------------------------------------------------- +# TrainingConfig validation tests (edge cases) +# --------------------------------------------------------------------------- + +class TestTrainingConfigValidation: + """Tests for TrainingConfig __post_init__ validation.""" + + def test_empty_tickers_raises_value_error(self) -> None: + """Empty tickers list raises ValueError with meaningful message.""" + with pytest.raises(ValueError, match="Tickers list is empty"): + TrainingConfig(tickers=[], positions={"AAPL": 50000.0}) + + def test_empty_positions_raises_value_error(self) -> None: + """Empty positions dict raises ValueError with meaningful message.""" + with pytest.raises(ValueError, match="Positions dictionary is empty"): + TrainingConfig(tickers=["AAPL"], positions={}) + + def test_zero_position_value_raises_value_error(self) -> None: + """Zero position value raises ValueError with meaningful message.""" + with pytest.raises(ValueError, match="Position value for 'AAPL' is 0"): + TrainingConfig(tickers=["AAPL"], positions={"AAPL": 0.0}) + + def test_negative_position_value_raises_value_error(self) -> None: + """Negative position value raises ValueError with meaningful message.""" + with pytest.raises(ValueError, match="Position value for 'AAPL' is -100"): + TrainingConfig(tickers=["AAPL"], positions={"AAPL": -100.0}) + + def test_valid_config_does_not_raise(self) -> None: + """Valid config with positive positions does not raise.""" + cfg = TrainingConfig( + tickers=["AAPL", "GOOGL"], + positions={"AAPL": 50000.0, "GOOGL": 50000.0}, + ) + assert cfg.tickers == ["AAPL", "GOOGL"] + assert cfg.positions == {"AAPL": 50000.0, "GOOGL": 50000.0} + + def test_mixed_valid_invalid_positions_raises(self) -> None: + """When one position is invalid, ValueError identifies the bad ticker.""" + with pytest.raises(ValueError, match="Position value for 'META' is -50"): + TrainingConfig( + tickers=["AAPL", "META"], + positions={"AAPL": 50000.0, "META": -50.0}, + ) diff --git a/tickets/TICKET-037.md b/tickets/TICKET-037.md new file mode 100644 index 0000000..d9e4bc0 --- /dev/null +++ b/tickets/TICKET-037.md @@ -0,0 +1,18 @@ +# TICKET-037: Add edge case validation to CLI and workflow + +**Module:** `alloc/cli.py`, `alloc/utils/workflow.py` +**Priority:** Medium — improve robustness + +## What to Implement + +Add input validation: +1. Empty tickers list → raise ValueError +2. Zero/negative positions → raise ValueError +3. Invalid JSON positions → meaningful error message +4. Empty workflow result → graceful handling + +## Verification + +- pytest tests/ -x -q passes +- ruff check alloc/ passes +- mypy alloc/ --ignore-missing-imports passes From c112ed28e8bacaf302527fed0f12dac3db73232f Mon Sep 17 00:00:00 2001 From: Sasha Malahov Date: Fri, 14 Aug 2026 10:30:47 -0400 Subject: [PATCH 2/3] =?UTF-8?q?feat:=20implement=20issues=20#59-#61=20?= =?UTF-8?q?=E2=80=94=20publish=5Fdashboard=20HTML,=20CLI=20wiring,=20integ?= =?UTF-8?q?ration=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix 3 ruff E501 line-too-long errors in alloc/lib/publish_dashboard.py - Wire --publish-dashboard, --dashboard-output, --dashboard-sync flags into alloc/cli.py - Add integration test suite (tests/test_dashboard_integration.py) covering: * Full pipeline: crawl → JSON → HTML → publish * GitHub Pages sync flag behavior * CLI --publish-dashboard flag wiring and defaults * Responsive design assertions (viewport, media queries, flexbox, standalone) - All 259 tests pass, ruff check clean --- .../parse_args().dashboard_output/4882971824 | 707 +++++++++++++++++ .../parse_args().dashboard_output/4884093248 | 707 +++++++++++++++++ .../parse_args().dashboard_output/4884094928 | 707 +++++++++++++++++ .../parse_args().dashboard_output/4884098960 | 707 +++++++++++++++++ .../parse_args().dashboard_output/4884102320 | 707 +++++++++++++++++ alloc/cli.py | 35 + alloc/lib/__init__.py | 12 +- alloc/lib/publish_dashboard.py | 727 ++++++++++++++++++ alloc/lib/publish_dashboard.py.bak | 725 +++++++++++++++++ tests/test_dashboard_integration.py | 449 +++++++++++ tests/test_publish_dashboard.py | 281 +++++++ tickets/TICKET-038.md | 28 + tickets/TICKET-039.md | 15 + tickets/TICKET-040.md | 31 + 14 files changed, 5837 insertions(+), 1 deletion(-) create mode 100644 MagicMock/parse_args().dashboard_output/4882971824 create mode 100644 MagicMock/parse_args().dashboard_output/4884093248 create mode 100644 MagicMock/parse_args().dashboard_output/4884094928 create mode 100644 MagicMock/parse_args().dashboard_output/4884098960 create mode 100644 MagicMock/parse_args().dashboard_output/4884102320 create mode 100644 alloc/lib/publish_dashboard.py create mode 100644 alloc/lib/publish_dashboard.py.bak create mode 100644 tests/test_dashboard_integration.py create mode 100644 tests/test_publish_dashboard.py create mode 100644 tickets/TICKET-038.md create mode 100644 tickets/TICKET-039.md create mode 100644 tickets/TICKET-040.md diff --git a/MagicMock/parse_args().dashboard_output/4882971824 b/MagicMock/parse_args().dashboard_output/4882971824 new file mode 100644 index 0000000..d828471 --- /dev/null +++ b/MagicMock/parse_args().dashboard_output/4882971824 @@ -0,0 +1,707 @@ + + + + + +alloc — Health Dashboard + + + +
+ +
+

📊 alloc Health Dashboard

+
Generated: 2026-08-14 14:30 UTC
+
+ + +
+
📁
430
Modules
+
📝
110,344
Lines
+
⚙️
5406
Functions
+
🏗️
930
Classes
+
🧪
681
Tests
+
+ + +
+
🧪
408
No Tests
+
📦
91
Oversized
+
💀
420
Dead Code
+
🔧
430
Lint Errors
+
+ + +
+

Signal Legend

+
🧪 S1 — No Tests
+
📦 S2 — Oversized + (>200 lines & >15 funcs)
+
💀 S3 — Dead Code (0 internal imports)
+
🔧 S4 — Lint/Type Errors
+
+ + +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
+
+ + + +
+ + + + \ No newline at end of file diff --git a/MagicMock/parse_args().dashboard_output/4884093248 b/MagicMock/parse_args().dashboard_output/4884093248 new file mode 100644 index 0000000..d828471 --- /dev/null +++ b/MagicMock/parse_args().dashboard_output/4884093248 @@ -0,0 +1,707 @@ + + + + + +alloc — Health Dashboard + + + +
+ +
+

📊 alloc Health Dashboard

+
Generated: 2026-08-14 14:30 UTC
+
+ + +
+
📁
430
Modules
+
📝
110,344
Lines
+
⚙️
5406
Functions
+
🏗️
930
Classes
+
🧪
681
Tests
+
+ + +
+
🧪
408
No Tests
+
📦
91
Oversized
+
💀
420
Dead Code
+
🔧
430
Lint Errors
+
+ + +
+

Signal Legend

+
🧪 S1 — No Tests
+
📦 S2 — Oversized + (>200 lines & >15 funcs)
+
💀 S3 — Dead Code (0 internal imports)
+
🔧 S4 — Lint/Type Errors
+
+ + +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
+
+ + + +
+ + + + \ No newline at end of file diff --git a/MagicMock/parse_args().dashboard_output/4884094928 b/MagicMock/parse_args().dashboard_output/4884094928 new file mode 100644 index 0000000..d828471 --- /dev/null +++ b/MagicMock/parse_args().dashboard_output/4884094928 @@ -0,0 +1,707 @@ + + + + + +alloc — Health Dashboard + + + +
+ +
+

📊 alloc Health Dashboard

+
Generated: 2026-08-14 14:30 UTC
+
+ + +
+
📁
430
Modules
+
📝
110,344
Lines
+
⚙️
5406
Functions
+
🏗️
930
Classes
+
🧪
681
Tests
+
+ + +
+
🧪
408
No Tests
+
📦
91
Oversized
+
💀
420
Dead Code
+
🔧
430
Lint Errors
+
+ + +
+

Signal Legend

+
🧪 S1 — No Tests
+
📦 S2 — Oversized + (>200 lines & >15 funcs)
+
💀 S3 — Dead Code (0 internal imports)
+
🔧 S4 — Lint/Type Errors
+
+ + +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
+
+ + + +
+ + + + \ No newline at end of file diff --git a/MagicMock/parse_args().dashboard_output/4884098960 b/MagicMock/parse_args().dashboard_output/4884098960 new file mode 100644 index 0000000..d828471 --- /dev/null +++ b/MagicMock/parse_args().dashboard_output/4884098960 @@ -0,0 +1,707 @@ + + + + + +alloc — Health Dashboard + + + +
+ +
+

📊 alloc Health Dashboard

+
Generated: 2026-08-14 14:30 UTC
+
+ + +
+
📁
430
Modules
+
📝
110,344
Lines
+
⚙️
5406
Functions
+
🏗️
930
Classes
+
🧪
681
Tests
+
+ + +
+
🧪
408
No Tests
+
📦
91
Oversized
+
💀
420
Dead Code
+
🔧
430
Lint Errors
+
+ + +
+

Signal Legend

+
🧪 S1 — No Tests
+
📦 S2 — Oversized + (>200 lines & >15 funcs)
+
💀 S3 — Dead Code (0 internal imports)
+
🔧 S4 — Lint/Type Errors
+
+ + +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
+
+ + + +
+ + + + \ No newline at end of file diff --git a/MagicMock/parse_args().dashboard_output/4884102320 b/MagicMock/parse_args().dashboard_output/4884102320 new file mode 100644 index 0000000..d828471 --- /dev/null +++ b/MagicMock/parse_args().dashboard_output/4884102320 @@ -0,0 +1,707 @@ + + + + + +alloc — Health Dashboard + + + +
+ +
+

📊 alloc Health Dashboard

+
Generated: 2026-08-14 14:30 UTC
+
+ + +
+
📁
430
Modules
+
📝
110,344
Lines
+
⚙️
5406
Functions
+
🏗️
930
Classes
+
🧪
681
Tests
+
+ + +
+
🧪
408
No Tests
+
📦
91
Oversized
+
💀
420
Dead Code
+
🔧
430
Lint Errors
+
+ + +
+

Signal Legend

+
🧪 S1 — No Tests
+
📦 S2 — Oversized + (>200 lines & >15 funcs)
+
💀 S3 — Dead Code (0 internal imports)
+
🔧 S4 — Lint/Type Errors
+
+ + +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
+
+ + + +
+ + + + \ No newline at end of file diff --git a/alloc/cli.py b/alloc/cli.py index c909a6c..3aa04da 100644 --- a/alloc/cli.py +++ b/alloc/cli.py @@ -320,6 +320,24 @@ def build_parser() -> argparse.ArgumentParser: help="Enable verbose (DEBUG-level) logging", ) + # --- Dashboard publishing --- + parser.add_argument( + "--publish-dashboard", + action="store_true", + help="Generate HTML health dashboard after workflow completes", + ) + parser.add_argument( + "--dashboard-output", + type=str, + default="dashboard.html", + help="Output HTML file path for dashboard (default: dashboard.html)", + ) + parser.add_argument( + "--dashboard-sync", + action="store_true", + help="Push generated dashboard HTML to gh-pages branch", + ) + return parser @@ -599,6 +617,23 @@ def main(argv: list[str] | None = None) -> int: # --- Print results --- print_results(result) + # --- Dashboard publishing --- + if args.publish_dashboard: + try: + from alloc.lib.dashboard import crawl_package + from alloc.lib.publish_dashboard import generate_html, publish + + logger.info("Generating health dashboard...") + metadata = crawl_package("alloc", "tests") + html = generate_html(metadata.__dict__) + publish(html, output_path=args.dashboard_output, sync=args.dashboard_sync) + logger.info( + "Dashboard published to %s", + args.dashboard_output, + ) + except Exception as exc: + logger.error("Dashboard generation failed: %s", exc, exc_info=True) + # --- Exit code --- if result.status != "success": logger.error("Workflow status: %s", result.status) diff --git a/alloc/lib/__init__.py b/alloc/lib/__init__.py index 28fc782..c5b6660 100644 --- a/alloc/lib/__init__.py +++ b/alloc/lib/__init__.py @@ -1 +1,11 @@ -"""alloc.lib — library utilities.""" +"""alloc.lib — library utilities. + +Submodules +---------- +* :mod:`alloc.lib.cache` — Disk-based cache with configurable TTL +* :mod:`alloc.lib.client` — Polygon.io API wrapper +* :mod:`alloc.lib.cycle_signals` — Terminal tree-view for health signals +* :mod:`alloc.lib.dashboard` — Codebase health dashboard (crawls + JSON) +* :mod:`alloc.lib.publish_dashboard` — HTML publisher for dashboard metadata +* :mod:`alloc.lib.utils` — Scalar coercion, formatting, price-index helpers +""" diff --git a/alloc/lib/publish_dashboard.py b/alloc/lib/publish_dashboard.py new file mode 100644 index 0000000..a8a51b7 --- /dev/null +++ b/alloc/lib/publish_dashboard.py @@ -0,0 +1,727 @@ +"""alloc.lib.publish_dashboard — HTML publisher for dashboard metadata. + +Takes the JSON metadata produced by :mod:`alloc.lib.dashboard` and renders +a standalone, responsive HTML page with inline CSS/JS. Signals S1–S4 are +colour-coded by severity. An optional ``--sync`` CLI flag pushes the +generated HTML to a ``gh-pages`` branch for GitHub Pages hosting. + +Usage +----- + from alloc.lib.publish_dashboard import generate_html, publish + + html = generate_html(metadata_dict) + publish(html, output_path="dashboard.html", sync=False) + +Or from CLI:: + + python -m alloc.lib.publish_dashboard [--json PATH] [--output PATH] [--sync] + +Signals +------- +* **S1** — no tests (orange) +* **S2** — oversized (amber) +* **S3** — dead code (slate) +* **S4** — lint/type errors (red) +""" + +from __future__ import annotations + +import argparse +import json +import logging +import subprocess +import sys +from datetime import datetime, timezone +from pathlib import Path +from typing import Any + +logger = logging.getLogger(__name__) + +# --------------------------------------------------------------------------- +# Signal colour palette +# --------------------------------------------------------------------------- + +SIGNAL_COLORS: dict[str, tuple[str, str]] = { + # (background, text) + "S1": ("#fff3cd", "#856404"), # orange — no tests + "S2": ("#ffecb5", "#6d5a00"), # amber — oversized + "S3": ("#e2e3e5", "#383d41"), # slate — dead code + "S4": ("#f8d7da", "#721c24"), # red — lint errors +} + +SIGNAL_ICONS: dict[str, str] = { + "S1": "🧪", + "S2": "📦", + "S3": "💀", + "S4": "🔧", +} + +SIGNAL_LABELS: dict[str, str] = { + "S1": "No Tests", + "S2": "Oversized", + "S3": "Dead Code", + "S4": "Lint Errors", +} + + +# --------------------------------------------------------------------------- +# HTML generation +# --------------------------------------------------------------------------- + + +def _escape_html(text: str) -> str: + """Minimal HTML escaping for safe embedding.""" + return ( + str(text) + .replace("&", "&") + .replace("<", "<") + .replace(">", ">") + .replace('"', """) + ) + + +def _signal_badge(signal: str) -> str: + """Return an HTML span for a single signal badge. + + Parameters + ---------- + signal : str + Signal string like ``"S1:no_tests"`` or ``"S4:lint_errors(3)"``. + + Returns + ------- + str + HTML ```` element with colour-coded styling. + """ + key = signal.split(":")[0] + label = signal.split(":", 1)[1] if ":" in signal else key + bg, fg = SIGNAL_COLORS.get(key, ("#e9ecef", "#495057")) + icon = SIGNAL_ICONS.get(key, "⚠️") + return ( + f'' + f"{icon} {_escape_html(label)}" + ) + + +def _module_row(mod: dict[str, Any]) -> str: + """Return an HTML table row for a single module. + + Parameters + ---------- + mod : dict + One module entry from the dashboard metadata. + + Returns + ------- + str + HTML ```` element. + """ + path = _escape_html(mod.get("path", "?")) + lines = mod.get("lines", 0) + functions = mod.get("functions", 0) + classes = mod.get("classes", 0) + tests = mod.get("test_count", 0) + has_doc = mod.get("has_docstring", False) + signals = mod.get("signals", []) + + # Docstring indicator + doc_icon = "✅" if has_doc else "❌" + + # Test coverage bar + test_pct = min(tests * 10, 100) if tests > 0 else 0 + test_bar = ( + f'
' + f'
' + f"
" + ) + + # Signal badges + badges_html = " ".join(_signal_badge(s) for s in signals) + signals_cell = badges_html if badges_html else '✅ clear' + + return ( + f"" + f"{path}" + f"{lines}" + f"{functions}" + f"{classes}" + f"{doc_icon}" + f"{tests} {test_bar}" + f"{signals_cell}" + f"" + ) + + +def _summary_card(title: str, value: str, icon: str = "") -> str: + """Return an HTML summary card div. + + Parameters + ---------- + title : str + Card title (e.g. "Modules"). + value : str + Card value (e.g. "18"). + icon : str + Optional emoji icon. + + Returns + ------- + str + HTML ``
`` card element. + """ + return ( + f'
' + f"
{icon}
" + f"
{_escape_html(value)}
" + f"
{_escape_html(title)}
" + f"
" + ) + + +def _signal_summary_cards(signals_summary: dict[str, int]) -> str: + """Return HTML cards for each signal type count. + + Parameters + ---------- + signals_summary : dict + Mapping of signal key (S1-S4) to count. + + Returns + ------- + str + HTML fragment with signal summary cards. + """ + if not signals_summary: + return '
0
' \ + '
All Clear ✅
' + + cards = [] + for key in sorted(signals_summary.keys()): + count = signals_summary[key] + bg, fg = SIGNAL_COLORS.get(key, ("#e9ecef", "#495057")) + icon = SIGNAL_ICONS.get(key, "⚠️") + label = SIGNAL_LABELS.get(key, key) + cards.append( + f'
' + f"
{icon}
" + f"
{count}
" + f"
{label}
" + f"
" + ) + return "\n".join(cards) + + +def generate_html(metadata: dict[str, Any]) -> str: + """Generate a standalone HTML dashboard page from metadata. + + The output is a self-contained HTML document with inline CSS and JS — + no external dependencies required. Works on mobile and desktop via + responsive CSS Grid/Flexbox layout. + + Parameters + ---------- + metadata : dict + The deserialised JSON output of :func:`dashboard.generate_json`. + Must contain keys: ``package``, ``total_modules``, ``total_lines``, + ``total_functions``, ``total_classes``, ``total_tests``, + ``signals_summary``, ``modules``. + + Returns + ------- + str + Complete HTML document string. + """ + pkg = _escape_html(metadata.get("package", "unknown")) + total_modules = metadata.get("total_modules", 0) + total_lines = metadata.get("total_lines", 0) + total_functions = metadata.get("total_functions", 0) + total_classes = metadata.get("total_classes", 0) + total_tests = metadata.get("total_tests", 0) + signals_summary = metadata.get("signals_summary", {}) + modules = metadata.get("modules", []) + + # Module rows + module_rows = "\n".join(_module_row(m) for m in modules) + + # Summary cards + summary_cards = "\n".join([ + _summary_card("Modules", str(total_modules), "📁"), + _summary_card("Lines", f"{total_lines:,}", "📝"), + _summary_card("Functions", str(total_functions), "⚙️"), + _summary_card("Classes", str(total_classes), "🏗️"), + _summary_card("Tests", str(total_tests), "🧪"), + ]) + + # Signal summary + signal_cards = _signal_summary_cards(signals_summary) + + # Timestamp + now = datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M UTC") + + html = f""" + + + + +{pkg} — Health Dashboard + + + +
+ +
+

📊 {pkg} Health Dashboard

+
Generated: {now}
+
+ + +
+ {summary_cards} +
+ + +
+ {signal_cards} +
+ + +
+

Signal Legend

+
🧪 S1 — No Tests
+
📦 S2 — Oversized + (>200 lines & >15 funcs)
+
💀 S3 — Dead Code (0 internal imports)
+
🔧 S4 — Lint/Type Errors
+
+ + +
+ + +
+ + +
+ + + + + + + + + + + + + + {module_rows} + +
ModuleLinesFuncsClassesDocTestsSignals
+
+ + + +
+ + + +""" + return html + + +# --------------------------------------------------------------------------- +# Publish helper +# --------------------------------------------------------------------------- + + +def publish( + html: str, + output_path: str | Path = "dashboard.html", + sync: bool = False, +) -> Path: + """Write HTML to *output_path* and optionally sync to ``gh-pages``. + + Parameters + ---------- + html : str + The HTML document string (from :func:`generate_html`). + output_path : str or Path + File path to write the HTML to. + sync : bool + If ``True``, push the HTML to a ``gh-pages`` branch via git. + + Returns + ------- + Path + The path where the HTML was written. + """ + out = Path(output_path) + out.parent.mkdir(parents=True, exist_ok=True) + out.write_text(html, encoding="utf-8") + logger.info("Dashboard HTML written to %s", out) + + if sync: + _sync_to_ghpages(out) + + return out + + +# --------------------------------------------------------------------------- +# GitHub Pages sync +# --------------------------------------------------------------------------- + + +def _sync_to_ghpages(html_path: Path) -> None: + """Push *html_path* to the ``gh-pages`` branch. + + Uses git subcommands to: + 1. Create or checkout ``gh-pages`` branch + 2. Copy the HTML file to the branch root + 3. Commit and push + + Parameters + ---------- + html_path : Path + Path to the generated HTML file. + + Raises + ------ + RuntimeError + If git is not available or push fails. + """ + try: + # Check git is available + subprocess.run( + ["git", "--version"], + capture_output=True, + check=True, + timeout=10, + ) + except (FileNotFoundError, subprocess.CalledProcessError) as exc: + raise RuntimeError(f"git not available: {exc}") from exc + + # Determine repo root + try: + result = subprocess.run( + ["git", "rev-parse", "--show-toplevel"], + capture_output=True, + text=True, + check=True, + timeout=10, + ) + repo_root = Path(result.stdout.strip()) + except subprocess.CalledProcessError as exc: + raise RuntimeError(f"Not a git repository: {exc}") from exc + + gh_pages_dir = repo_root / ".gh-pages-staging" + gh_pages_dir.mkdir(exist_ok=True) + + # Copy HTML to staging + dest = gh_pages_dir / html_path.name + dest.write_text(html_path.read_text(encoding="utf-8"), encoding="utf-8") + + # Stage, commit, push + steps = [ + ["git", "-C", str(repo_root), "checkout", "gh-pages"], + ["git", "-C", str(repo_root), "cp", str(dest), str(repo_root / html_path.name)], + ["git", "-C", str(repo_root), "add", html_path.name], + ["git", "-C", str(repo_root), "commit", "-m", + f"docs: update dashboard — {datetime.now(timezone.utc).strftime('%Y-%m-%d')}"], + ["git", "-C", str(repo_root), "push", "origin", "gh-pages"], + ] + + # Handle "nothing to commit" gracefully + for step in steps: + cmd_str = " ".join(step) + logger.debug("Running: %s", cmd_str) + result = subprocess.run(step, capture_output=True, text=True, timeout=60) + if result.returncode != 0: + # "nothing to commit" is acceptable + if "nothing to commit" in result.stderr.lower(): + logger.info("No changes to commit, skipping") + break + logger.warning("Command failed: %s\nstderr: %s", cmd_str, result.stderr) + + # Clean up staging + try: + import shutil + shutil.rmtree(gh_pages_dir) + except OSError: + pass + + logger.info("Dashboard synced to gh-pages") + + +# --------------------------------------------------------------------------- +# CLI entry point +# --------------------------------------------------------------------------- + + +def main() -> None: + """CLI entry point for publish_dashboard. + + Usage:: + + python -m alloc.lib.publish_dashboard [--json PATH] [--output PATH] [--sync] + + If ``--json`` is provided, reads metadata from that file. + Otherwise generates fresh metadata via :mod:`alloc.lib.dashboard`. + + Options + ------- + --json PATH + Path to pre-generated dashboard JSON. + --output PATH + Output HTML file path (default: ``dashboard.html``). + --sync + Push generated HTML to ``gh-pages`` branch. + """ + parser = argparse.ArgumentParser( + description="Generate HTML dashboard from alloc metadata" + ) + parser.add_argument( + "--json", + dest="json_path", + type=str, + default=None, + help="Path to pre-generated dashboard JSON", + ) + parser.add_argument( + "--output", + type=str, + default="dashboard.html", + help="Output HTML file path (default: dashboard.html)", + ) + parser.add_argument( + "--sync", + action="store_true", + help="Push generated HTML to gh-pages branch", + ) + args = parser.parse_args() + + # Load or generate metadata + if args.json_path: + json_path = Path(args.json_path) + if not json_path.exists(): + logger.error("JSON file not found: %s", json_path) + sys.exit(1) + metadata = json.loads(json_path.read_text(encoding="utf-8")) + else: + from alloc.lib.dashboard import generate_json as _gen_json + + json_str = _gen_json() + metadata = json.loads(json_str) + + # Generate and publish + html = generate_html(metadata) + publish(html, output_path=args.output, sync=args.sync) + print(f"Dashboard published to {args.output}") + + +if __name__ == "__main__": + main() diff --git a/alloc/lib/publish_dashboard.py.bak b/alloc/lib/publish_dashboard.py.bak new file mode 100644 index 0000000..1a0a8d3 --- /dev/null +++ b/alloc/lib/publish_dashboard.py.bak @@ -0,0 +1,725 @@ +"""alloc.lib.publish_dashboard — HTML publisher for dashboard metadata. + +Takes the JSON metadata produced by :mod:`alloc.lib.dashboard` and renders +a standalone, responsive HTML page with inline CSS/JS. Signals S1–S4 are +colour-coded by severity. An optional ``--sync`` CLI flag pushes the +generated HTML to a ``gh-pages`` branch for GitHub Pages hosting. + +Usage +----- + from alloc.lib.publish_dashboard import generate_html, publish + + html = generate_html(metadata_dict) + publish(html, output_path="dashboard.html", sync=False) + +Or from CLI:: + + python -m alloc.lib.publish_dashboard [--json PATH] [--output PATH] [--sync] + +Signals +------- +* **S1** — no tests (orange) +* **S2** — oversized (amber) +* **S3** — dead code (slate) +* **S4** — lint/type errors (red) +""" + +from __future__ import annotations + +import argparse +import json +import logging +import subprocess +import sys +from datetime import datetime, timezone +from pathlib import Path +from typing import Any + +logger = logging.getLogger(__name__) + +# --------------------------------------------------------------------------- +# Signal colour palette +# --------------------------------------------------------------------------- + +SIGNAL_COLORS: dict[str, tuple[str, str]] = { + # (background, text) + "S1": ("#fff3cd", "#856404"), # orange — no tests + "S2": ("#ffecb5", "#6d5a00"), # amber — oversized + "S3": ("#e2e3e5", "#383d41"), # slate — dead code + "S4": ("#f8d7da", "#721c24"), # red — lint errors +} + +SIGNAL_ICONS: dict[str, str] = { + "S1": "🧪", + "S2": "📦", + "S3": "💀", + "S4": "🔧", +} + +SIGNAL_LABELS: dict[str, str] = { + "S1": "No Tests", + "S2": "Oversized", + "S3": "Dead Code", + "S4": "Lint Errors", +} + + +# --------------------------------------------------------------------------- +# HTML generation +# --------------------------------------------------------------------------- + + +def _escape_html(text: str) -> str: + """Minimal HTML escaping for safe embedding.""" + return ( + str(text) + .replace("&", "&") + .replace("<", "<") + .replace(">", ">") + .replace('"', """) + ) + + +def _signal_badge(signal: str) -> str: + """Return an HTML span for a single signal badge. + + Parameters + ---------- + signal : str + Signal string like ``"S1:no_tests"`` or ``"S4:lint_errors(3)"``. + + Returns + ------- + str + HTML ```` element with colour-coded styling. + """ + key = signal.split(":")[0] + label = signal.split(":", 1)[1] if ":" in signal else key + bg, fg = SIGNAL_COLORS.get(key, ("#e9ecef", "#495057")) + icon = SIGNAL_ICONS.get(key, "⚠️") + return ( + f'' + f"{icon} {_escape_html(label)}" + ) + + +def _module_row(mod: dict[str, Any]) -> str: + """Return an HTML table row for a single module. + + Parameters + ---------- + mod : dict + One module entry from the dashboard metadata. + + Returns + ------- + str + HTML ```` element. + """ + path = _escape_html(mod.get("path", "?")) + lines = mod.get("lines", 0) + functions = mod.get("functions", 0) + classes = mod.get("classes", 0) + tests = mod.get("test_count", 0) + has_doc = mod.get("has_docstring", False) + signals = mod.get("signals", []) + + # Docstring indicator + doc_icon = "✅" if has_doc else "❌" + + # Test coverage bar + test_pct = min(tests * 10, 100) if tests > 0 else 0 + test_bar = ( + f'
' + f'
' + f"
" + ) + + # Signal badges + badges_html = " ".join(_signal_badge(s) for s in signals) + signals_cell = badges_html if badges_html else '✅ clear' + + return ( + f"" + f"{path}" + f"{lines}" + f"{functions}" + f"{classes}" + f"{doc_icon}" + f"{tests} {test_bar}" + f"{signals_cell}" + f"" + ) + + +def _summary_card(title: str, value: str, icon: str = "") -> str: + """Return an HTML summary card div. + + Parameters + ---------- + title : str + Card title (e.g. "Modules"). + value : str + Card value (e.g. "18"). + icon : str + Optional emoji icon. + + Returns + ------- + str + HTML ``
`` card element. + """ + return ( + f'
' + f"
{icon}
" + f"
{_escape_html(value)}
" + f"
{_escape_html(title)}
" + f"
" + ) + + +def _signal_summary_cards(signals_summary: dict[str, int]) -> str: + """Return HTML cards for each signal type count. + + Parameters + ---------- + signals_summary : dict + Mapping of signal key (S1-S4) to count. + + Returns + ------- + str + HTML fragment with signal summary cards. + """ + if not signals_summary: + return '
0
' \ + '
All Clear ✅
' + + cards = [] + for key in sorted(signals_summary.keys()): + count = signals_summary[key] + bg, fg = SIGNAL_COLORS.get(key, ("#e9ecef", "#495057")) + icon = SIGNAL_ICONS.get(key, "⚠️") + label = SIGNAL_LABELS.get(key, key) + cards.append( + f'
' + f"
{icon}
" + f"
{count}
" + f"
{label}
" + f"
" + ) + return "\n".join(cards) + + +def generate_html(metadata: dict[str, Any]) -> str: + """Generate a standalone HTML dashboard page from metadata. + + The output is a self-contained HTML document with inline CSS and JS — + no external dependencies required. Works on mobile and desktop via + responsive CSS Grid/Flexbox layout. + + Parameters + ---------- + metadata : dict + The deserialised JSON output of :func:`dashboard.generate_json`. + Must contain keys: ``package``, ``total_modules``, ``total_lines``, + ``total_functions``, ``total_classes``, ``total_tests``, + ``signals_summary``, ``modules``. + + Returns + ------- + str + Complete HTML document string. + """ + pkg = _escape_html(metadata.get("package", "unknown")) + total_modules = metadata.get("total_modules", 0) + total_lines = metadata.get("total_lines", 0) + total_functions = metadata.get("total_functions", 0) + total_classes = metadata.get("total_classes", 0) + total_tests = metadata.get("total_tests", 0) + signals_summary = metadata.get("signals_summary", {}) + modules = metadata.get("modules", []) + + # Module rows + module_rows = "\n".join(_module_row(m) for m in modules) + + # Summary cards + summary_cards = "\n".join([ + _summary_card("Modules", str(total_modules), "📁"), + _summary_card("Lines", f"{total_lines:,}", "📝"), + _summary_card("Functions", str(total_functions), "⚙️"), + _summary_card("Classes", str(total_classes), "🏗️"), + _summary_card("Tests", str(total_tests), "🧪"), + ]) + + # Signal summary + signal_cards = _signal_summary_cards(signals_summary) + + # Timestamp + now = datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M UTC") + + html = f""" + + + + +{pkg} — Health Dashboard + + + +
+ +
+

📊 {pkg} Health Dashboard

+
Generated: {now}
+
+ + +
+ {summary_cards} +
+ + +
+ {signal_cards} +
+ + +
+

Signal Legend

+
🧪 S1 — No Tests
+
📦 S2 — Oversized (>200 lines & >15 funcs)
+
💀 S3 — Dead Code (0 internal imports)
+
🔧 S4 — Lint/Type Errors
+
+ + +
+ + +
+ + +
+ + + + + + + + + + + + + + {module_rows} + +
ModuleLinesFuncsClassesDocTestsSignals
+
+ + + +
+ + + +""" + return html + + +# --------------------------------------------------------------------------- +# Publish helper +# --------------------------------------------------------------------------- + + +def publish( + html: str, + output_path: str | Path = "dashboard.html", + sync: bool = False, +) -> Path: + """Write HTML to *output_path* and optionally sync to ``gh-pages``. + + Parameters + ---------- + html : str + The HTML document string (from :func:`generate_html`). + output_path : str or Path + File path to write the HTML to. + sync : bool + If ``True``, push the HTML to a ``gh-pages`` branch via git. + + Returns + ------- + Path + The path where the HTML was written. + """ + out = Path(output_path) + out.parent.mkdir(parents=True, exist_ok=True) + out.write_text(html, encoding="utf-8") + logger.info("Dashboard HTML written to %s", out) + + if sync: + _sync_to_ghpages(out) + + return out + + +# --------------------------------------------------------------------------- +# GitHub Pages sync +# --------------------------------------------------------------------------- + + +def _sync_to_ghpages(html_path: Path) -> None: + """Push *html_path* to the ``gh-pages`` branch. + + Uses git subcommands to: + 1. Create or checkout ``gh-pages`` branch + 2. Copy the HTML file to the branch root + 3. Commit and push + + Parameters + ---------- + html_path : Path + Path to the generated HTML file. + + Raises + ------ + RuntimeError + If git is not available or push fails. + """ + try: + # Check git is available + subprocess.run( + ["git", "--version"], + capture_output=True, + check=True, + timeout=10, + ) + except (FileNotFoundError, subprocess.CalledProcessError) as exc: + raise RuntimeError(f"git not available: {exc}") from exc + + # Determine repo root + try: + result = subprocess.run( + ["git", "rev-parse", "--show-toplevel"], + capture_output=True, + text=True, + check=True, + timeout=10, + ) + repo_root = Path(result.stdout.strip()) + except subprocess.CalledProcessError as exc: + raise RuntimeError(f"Not a git repository: {exc}") from exc + + gh_pages_dir = repo_root / ".gh-pages-staging" + gh_pages_dir.mkdir(exist_ok=True) + + # Copy HTML to staging + dest = gh_pages_dir / html_path.name + dest.write_text(html_path.read_text(encoding="utf-8"), encoding="utf-8") + + # Stage, commit, push + steps = [ + ["git", "-C", str(repo_root), "checkout", "gh-pages"], + ["git", "-C", str(repo_root), "cp", str(dest), str(repo_root / html_path.name)], + ["git", "-C", str(repo_root), "add", html_path.name], + ["git", "-C", str(repo_root), "commit", "-m", + f"docs: update dashboard — {datetime.now(timezone.utc).strftime('%Y-%m-%d')}"], + ["git", "-C", str(repo_root), "push", "origin", "gh-pages"], + ] + + # Handle "nothing to commit" gracefully + for step in steps: + cmd_str = " ".join(step) + logger.debug("Running: %s", cmd_str) + result = subprocess.run(step, capture_output=True, text=True, timeout=60) + if result.returncode != 0: + # "nothing to commit" is acceptable + if "nothing to commit" in result.stderr.lower(): + logger.info("No changes to commit, skipping") + break + logger.warning("Command failed: %s\nstderr: %s", cmd_str, result.stderr) + + # Clean up staging + try: + import shutil + shutil.rmtree(gh_pages_dir) + except OSError: + pass + + logger.info("Dashboard synced to gh-pages") + + +# --------------------------------------------------------------------------- +# CLI entry point +# --------------------------------------------------------------------------- + + +def main() -> None: + """CLI entry point for publish_dashboard. + + Usage:: + + python -m alloc.lib.publish_dashboard [--json PATH] [--output PATH] [--sync] + + If ``--json`` is provided, reads metadata from that file. + Otherwise generates fresh metadata via :mod:`alloc.lib.dashboard`. + + Options + ------- + --json PATH + Path to pre-generated dashboard JSON. + --output PATH + Output HTML file path (default: ``dashboard.html``). + --sync + Push generated HTML to ``gh-pages`` branch. + """ + parser = argparse.ArgumentParser( + description="Generate HTML dashboard from alloc metadata" + ) + parser.add_argument( + "--json", + dest="json_path", + type=str, + default=None, + help="Path to pre-generated dashboard JSON", + ) + parser.add_argument( + "--output", + type=str, + default="dashboard.html", + help="Output HTML file path (default: dashboard.html)", + ) + parser.add_argument( + "--sync", + action="store_true", + help="Push generated HTML to gh-pages branch", + ) + args = parser.parse_args() + + # Load or generate metadata + if args.json_path: + json_path = Path(args.json_path) + if not json_path.exists(): + logger.error("JSON file not found: %s", json_path) + sys.exit(1) + metadata = json.loads(json_path.read_text(encoding="utf-8")) + else: + from alloc.lib.dashboard import generate_json as _gen_json + + json_str = _gen_json() + metadata = json.loads(json_str) + + # Generate and publish + html = generate_html(metadata) + publish(html, output_path=args.output, sync=args.sync) + print(f"Dashboard published to {args.output}") + + +if __name__ == "__main__": + main() diff --git a/tests/test_dashboard_integration.py b/tests/test_dashboard_integration.py new file mode 100644 index 0000000..5f96eb4 --- /dev/null +++ b/tests/test_dashboard_integration.py @@ -0,0 +1,449 @@ +"""Integration tests for the full dashboard pipeline. + +Tests the end-to-end flow: crawl → JSON → HTML → publish → sync. +Also tests the CLI --publish-dashboard flag wiring. +""" + +from __future__ import annotations + +import json +import textwrap +from pathlib import Path +from unittest.mock import MagicMock, patch + +import pytest +from typing import Any + +from alloc.cli import build_parser, parse_args +from alloc.lib.dashboard import crawl_package, generate_json +from alloc.lib.publish_dashboard import generate_html, publish + + +# --------------------------------------------------------------------------- +# Fixtures +# --------------------------------------------------------------------------- + +@pytest.fixture +def tmp_pkg(tmp_path: Path) -> Path: + """Create a minimal fake package under tmp_path.""" + pkg = tmp_path / "fakepkg" + pkg.mkdir() + (pkg / "__init__.py").write_text('"""fake package."""\n') + (pkg / "core.py").write_text( + textwrap.dedent( + '''\ + """Core module.""" + + def run(): + pass + + class Runner: + def execute(self): + pass + ''' + ) + ) + (pkg / "utils.py").write_text( + textwrap.dedent( + '''\ + """Utilities module.""" + from fakepkg.core import run + + def helper(): + return run() + ''' + ) + ) + return pkg + + +@pytest.fixture +def tmp_tests(tmp_path: Path) -> Path: + """Create a minimal tests directory under tmp_path.""" + td = tmp_path / "tests" + td.mkdir() + (td / "test_core.py").write_text( + textwrap.dedent( + """\ + def test_run(): + pass + + def test_runner(): + pass + """ + ) + ) + return td + + +# --------------------------------------------------------------------------- +# Full pipeline: crawl → JSON → HTML → publish +# --------------------------------------------------------------------------- + + +class TestFullPipeline: + """End-to-end dashboard pipeline tests.""" + + def test_crawl_to_json(self, tmp_pkg: Path, tmp_tests: Path) -> None: + """crawl_package produces valid DashboardMetadata.""" + meta = crawl_package(tmp_pkg, tmp_tests) + assert meta.total_modules >= 3 # __init__, core, utils + assert meta.total_lines > 0 + assert meta.total_functions > 0 + assert meta.total_tests >= 2 # test_core has 2 tests + + def test_crawl_to_json_to_html( + self, tmp_pkg: Path, tmp_tests: Path + ) -> None: + """Full crawl → JSON → HTML pipeline produces valid HTML.""" + meta = crawl_package(tmp_pkg, tmp_tests) + json_str = generate_json(tmp_pkg, tmp_tests) + data = json.loads(json_str) + + html = generate_html(data) + assert isinstance(html, str) + assert "" in html + assert "" in html + assert " - - -
- -
-

📊 alloc Health Dashboard

-
Generated: 2026-08-14 14:30 UTC
-
- - -
-
📁
430
Modules
-
📝
110,344
Lines
-
⚙️
5406
Functions
-
🏗️
930
Classes
-
🧪
681
Tests
-
- - -
-
🧪
408
No Tests
-
📦
91
Oversized
-
💀
420
Dead Code
-
🔧
430
Lint Errors
-
- - -
-

Signal Legend

-
🧪 S1 — No Tests
-
📦 S2 — Oversized - (>200 lines & >15 funcs)
-
💀 S3 — Dead Code (0 internal imports)
-
🔧 S4 — Lint/Type Errors
-
- - -
- - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
-
- - - -
- - - - \ No newline at end of file diff --git a/MagicMock/parse_args().dashboard_output/4884093248 b/MagicMock/parse_args().dashboard_output/4884093248 deleted file mode 100644 index d828471..0000000 --- a/MagicMock/parse_args().dashboard_output/4884093248 +++ /dev/null @@ -1,707 +0,0 @@ - - - - - -alloc — Health Dashboard - - - -
- -
-

📊 alloc Health Dashboard

-
Generated: 2026-08-14 14:30 UTC
-
- - -
-
📁
430
Modules
-
📝
110,344
Lines
-
⚙️
5406
Functions
-
🏗️
930
Classes
-
🧪
681
Tests
-
- - -
-
🧪
408
No Tests
-
📦
91
Oversized
-
💀
420
Dead Code
-
🔧
430
Lint Errors
-
- - -
-

Signal Legend

-
🧪 S1 — No Tests
-
📦 S2 — Oversized - (>200 lines & >15 funcs)
-
💀 S3 — Dead Code (0 internal imports)
-
🔧 S4 — Lint/Type Errors
-
- - -
- - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
-
- - - -
- - - - \ No newline at end of file diff --git a/MagicMock/parse_args().dashboard_output/4884094928 b/MagicMock/parse_args().dashboard_output/4884094928 deleted file mode 100644 index d828471..0000000 --- a/MagicMock/parse_args().dashboard_output/4884094928 +++ /dev/null @@ -1,707 +0,0 @@ - - - - - -alloc — Health Dashboard - - - -
- -
-

📊 alloc Health Dashboard

-
Generated: 2026-08-14 14:30 UTC
-
- - -
-
📁
430
Modules
-
📝
110,344
Lines
-
⚙️
5406
Functions
-
🏗️
930
Classes
-
🧪
681
Tests
-
- - -
-
🧪
408
No Tests
-
📦
91
Oversized
-
💀
420
Dead Code
-
🔧
430
Lint Errors
-
- - -
-

Signal Legend

-
🧪 S1 — No Tests
-
📦 S2 — Oversized - (>200 lines & >15 funcs)
-
💀 S3 — Dead Code (0 internal imports)
-
🔧 S4 — Lint/Type Errors
-
- - -
- - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
-
- - - -
- - - - \ No newline at end of file diff --git a/MagicMock/parse_args().dashboard_output/4884098960 b/MagicMock/parse_args().dashboard_output/4884098960 deleted file mode 100644 index d828471..0000000 --- a/MagicMock/parse_args().dashboard_output/4884098960 +++ /dev/null @@ -1,707 +0,0 @@ - - - - - -alloc — Health Dashboard - - - -
- -
-

📊 alloc Health Dashboard

-
Generated: 2026-08-14 14:30 UTC
-
- - -
-
📁
430
Modules
-
📝
110,344
Lines
-
⚙️
5406
Functions
-
🏗️
930
Classes
-
🧪
681
Tests
-
- - -
-
🧪
408
No Tests
-
📦
91
Oversized
-
💀
420
Dead Code
-
🔧
430
Lint Errors
-
- - -
-

Signal Legend

-
🧪 S1 — No Tests
-
📦 S2 — Oversized - (>200 lines & >15 funcs)
-
💀 S3 — Dead Code (0 internal imports)
-
🔧 S4 — Lint/Type Errors
-
- - -
- - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
-
- - - -
- - - - \ No newline at end of file diff --git a/MagicMock/parse_args().dashboard_output/4884102320 b/MagicMock/parse_args().dashboard_output/4884102320 deleted file mode 100644 index d828471..0000000 --- a/MagicMock/parse_args().dashboard_output/4884102320 +++ /dev/null @@ -1,707 +0,0 @@ - - - - - -alloc — Health Dashboard - - - -
- -
-

📊 alloc Health Dashboard

-
Generated: 2026-08-14 14:30 UTC
-
- - -
-
📁
430
Modules
-
📝
110,344
Lines
-
⚙️
5406
Functions
-
🏗️
930
Classes
-
🧪
681
Tests
-
- - -
-
🧪
408
No Tests
-
📦
91
Oversized
-
💀
420
Dead Code
-
🔧
430
Lint Errors
-
- - -
-

Signal Legend

-
🧪 S1 — No Tests
-
📦 S2 — Oversized - (>200 lines & >15 funcs)
-
💀 S3 — Dead Code (0 internal imports)
-
🔧 S4 — Lint/Type Errors
-
- - -
- - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ModuleLinesFuncsClassesDocTestsSignals
alloc..venv.lib.python3.13.site-packages.pip.__init__8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__main__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip.__pip-runner__29210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.__init__10100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.build_env2611530
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cache22017518
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.autocompletion136300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.base_command171910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.cmdoptions9322910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.command_context20310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.index_command125720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.main_parser81300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.parser2221740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.progress_bars123600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.req_command3031010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.spinners1141540
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.cli.status_codes6000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.__init__118200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.cache16612118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.check59110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.completion122210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.configuration2241410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.debug1491110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.download116210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.freeze91410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.hash48310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.help29110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.index119410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.inspect77310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.install657910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.list3161420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.lock139210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.search142820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.show192620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.uninstall100210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.commands.wheel150210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.configuration2792410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.__init__13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.base39410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.installed22310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.sdist123910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.distributions.wheel33310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.exceptions65446380
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.collector3812680
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.package_finder8584160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.index.sources2232560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.__init__3261700
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._distutils127500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations._sysconfig159800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.locations.base55400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.main8100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.__init__113810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata._json70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.base5555970
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib.__init__4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._compat62720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._dists1822220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.importlib._envs1121020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.metadata.pkg_resources2313240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.candidate17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.direct_url1782150
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.format_control63610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.index17210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.installation_report29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.link4504640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.pylock136570
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.scheme18010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.search_scope89410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.selection_prefs40110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.target_python98410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.models.wheel108610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.auth3882860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.cache8810118
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.download2511520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.lazy_wheel1662020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.session3621470
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.utils402047
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.network.xmlrpc52210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.build_tracker981020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata26100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_editable29100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.metadata_legacy57200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel30100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_editable39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.build.wheel_legacy100300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.check132610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.freeze213620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.editable_legacy39100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.install.wheel5283650
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.operations.prepare5332120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.pyproject111300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.__init__83210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.constructors4621910
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_dependency_group64400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_file4822240
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_install7514110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_set61910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.req.req_uninstall4733030
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.base15210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.legacy.resolver4491410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.base1012130
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.candidates4545860
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.factory6652630
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.found_candidates126810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.provider212910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.reporter63920
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.requirements1714550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.resolution.resolvelib.resolver241610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.self_outdated_check1891120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._jaraco_text83500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils._log23310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.appdirs32400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compat47300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.compatibility_tags1451000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.datetime6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.deprecation96310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.direct_url_helpers71300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.egg_link67300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.entrypoints65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filesystem103900
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.filetypes21100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.glibc47400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.hashes1021420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.logging2811780
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.misc5886130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.packaging27200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.retry30300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.setuptools_build107500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.subprocess186600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.temp_dir2201640
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.unpacking2661200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.urls40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.virtualenv72700
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.utils.wheel91600
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.__init__11000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.bazaar94810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.git4112210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.mercurial1461010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.subversion2371610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.vcs.versioncontrol5604450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._internal.wheel_builder2751000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.__init__81100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.__init__19000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol._cmd43400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.adapter120510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.cache5110318
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.file_cache1101230
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.caches.redis_cache34610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.controller3571110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.filewrapper68610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.heuristics1171140
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.serialize99510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.cachecontrol.wrapper33100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.__main__9000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.certifi.core568038
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__init__12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups.__main__54100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._implementation161930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._lint_dependency_groups49100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._pip_wrapper49200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.dependency_groups._toml_compat8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.__init__16320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.compat86081100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.database11057470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.index4451810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.locators108958110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.manifest2761310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.markers124710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.metadata7985560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.resources2803460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.scripts3401810
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.util1523123190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.version53254100
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distlib.wheel8983930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__init__52000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.__main__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.distro.distro10395740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.__init__44000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.codec89550
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.compat8300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.core35018438
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.idnadata4241000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.intranges42400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.package_data1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.idna.uts46data85098200
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.__init__37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.exceptions28260
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.ext1321420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.msgpack.fallback7973930
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.__init__8000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._elffile85350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._manylinux1761110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._musllinux65310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._parser2662450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._structures361620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging._tokenizer164930
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses.__init__84110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.licenses._spdx751020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.markers2621450
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.metadata5902450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.requirements64620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.specifiers6884740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.tags4823110
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.utils1166347
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.packaging.version4202950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pkg_resources.__init__2831280340
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__init__5493300
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.__main__43100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.android1862210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.api2374410
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.macos1161810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.unix2172610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.version14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.platformdirs.windows2162210
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__init__65300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.console54300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filter54720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.filters.__init__8582290
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatter90510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters.__init__122810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.formatters._mapping20000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexer72743160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.__init__2751610
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers._mapping599000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.lexers.python10619100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.modeline32200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.plugin45500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.regexopt66300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.scanner89720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.sphinxext198910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.style155720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles.__init__45200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.styles._mapping51000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.token165910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.unistring94300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pygments.util2631940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks.__init__25000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._impl3312150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process.__init__15200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.pyproject_hooks._in_process._in_process2912250
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__init__125200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.__version__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests._internal_utils40200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.adapters5852020
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.api117800
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.auth2231940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.certs12000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.compat48100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.cookies4394940
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.exceptions913250
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.help106300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.hooks23200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.models7404450
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.packages17005
💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.sessions5662820
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.status_codes112200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.structures671420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.requests.utils77643047
📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.__init__24000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.providers162720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.reporters38810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.__init__26000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.abstract34220
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.criterion37410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.exceptions38660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.resolvers.resolution4241620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.resolvelib.structs1602860
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__init__142500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.__main__234410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._cell_widths452000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_codes3610000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._emoji_replace25200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._export_format68000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._extension6100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._fileno16100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._inspect2261210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._log_render81210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._loop36300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._null_file471910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._palettes301000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._pick13100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._ratio122320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._spinners481000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._stack11210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._timer14100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._win32_console5252950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows55210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._windows_renderer52100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich._wrap68200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.abc22120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.align2711420
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.ansi202520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.bar71410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.box404810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.cells133500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color5441840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.color_triplet30310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.columns166410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.console2273116160
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.constrain29310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.containers1391820
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.control1801510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.default_styles184000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.diagnose31100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.emoji70520
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.errors18090
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.file_proxy47610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.filesize70300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.highlighter151660
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.json123310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.jupyter77720
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.layout3582880
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live3211620
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.live_render95510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.logging261610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.markup201710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.measure126710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.padding121610
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pager23320
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.palette82620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.panel286710
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.pretty8833470
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress144896190
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.progress_bar193810
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.prompt3181870
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.protocol31200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.region7010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.repr1161020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.rule109510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.scope73300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.screen44210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.segment6362740
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.spinner116510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.status113910
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.style6964130
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.styled31310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.syntax8482950
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.table8832840
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.terminal_theme143110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.text11636520
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.theme91730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.themes3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.traceback7702060
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.rich.tree220510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._parser5973550
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._re89400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli._types4000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w.__init__3000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.tomli_w._writer1901210
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore.__init__27000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._api2504420
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._macos4341010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._openssl37300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._ssl_constants17100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.truststore._windows4595120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.typing_extensions3484223560
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.__init__72200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._collections2693230
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3._version1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connection4221760
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.connectionpool8412730
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._appengine_environ24500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.bindings414120
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib._securetransport.low_level2851300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.appengine244730
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.ntlmpool104310
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.pyopenssl3893330
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.securetransport6464120
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.contrib.socks167350
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.exceptions18315370
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.fields2121110
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.filepost70400
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.__init__0000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.makefile47100
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.backports.weakref_finalize1201020
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.packages.six80569150
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.poolmanager4041920
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.request151620
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.response6694460
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.__init__46000
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.connection100500
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.proxy43200
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.queue14410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.request103300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.response64300
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.retry4712320
🧪 no_tests 📦 oversized 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_3611510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssl_match_hostname99410
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.ssltransport1782510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.timeout2001010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.url3201510
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc..venv.lib.python3.13.site-packages.pip._vendor.urllib3.util.wait891010
🧪 no_tests 💀 dead_code 🔧 lint_errors(2)
alloc.__init__2000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.__main__13000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.cli49311082
🔧 lint_errors(1)
alloc.config.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.config.settings835114
🔧 lint_errors(1)
alloc.core7879138
🔧 lint_errors(1)
alloc.lib.__init__10000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.lib.cache11610118
🔧 lint_errors(1)
alloc.lib.client996115
🔧 lint_errors(1)
alloc.lib.cycle_signals1594018
💀 dead_code 🔧 lint_errors(1)
alloc.lib.dashboard2679226
🔧 lint_errors(1)
alloc.lib.publish_dashboard5929027
🔧 lint_errors(1)
alloc.lib.utils2076247
💀 dead_code 🔧 lint_errors(1)
alloc.models.__init__1000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.models.data2778132
💀 dead_code 🔧 lint_errors(1)
alloc.models.networks5051840
🧪 no_tests 📦 oversized 🔧 lint_errors(1)
alloc.models.portfolio2365133
🔧 lint_errors(1)
alloc.utils.__init__14000
🧪 no_tests 💀 dead_code 🔧 lint_errors(1)
alloc.utils.workflow3407437
🔧 lint_errors(1)
-
- - - -
- - - - \ No newline at end of file diff --git a/alloc/lib/publish_dashboard.py.bak b/alloc/lib/publish_dashboard.py.bak deleted file mode 100644 index 1a0a8d3..0000000 --- a/alloc/lib/publish_dashboard.py.bak +++ /dev/null @@ -1,725 +0,0 @@ -"""alloc.lib.publish_dashboard — HTML publisher for dashboard metadata. - -Takes the JSON metadata produced by :mod:`alloc.lib.dashboard` and renders -a standalone, responsive HTML page with inline CSS/JS. Signals S1–S4 are -colour-coded by severity. An optional ``--sync`` CLI flag pushes the -generated HTML to a ``gh-pages`` branch for GitHub Pages hosting. - -Usage ------ - from alloc.lib.publish_dashboard import generate_html, publish - - html = generate_html(metadata_dict) - publish(html, output_path="dashboard.html", sync=False) - -Or from CLI:: - - python -m alloc.lib.publish_dashboard [--json PATH] [--output PATH] [--sync] - -Signals -------- -* **S1** — no tests (orange) -* **S2** — oversized (amber) -* **S3** — dead code (slate) -* **S4** — lint/type errors (red) -""" - -from __future__ import annotations - -import argparse -import json -import logging -import subprocess -import sys -from datetime import datetime, timezone -from pathlib import Path -from typing import Any - -logger = logging.getLogger(__name__) - -# --------------------------------------------------------------------------- -# Signal colour palette -# --------------------------------------------------------------------------- - -SIGNAL_COLORS: dict[str, tuple[str, str]] = { - # (background, text) - "S1": ("#fff3cd", "#856404"), # orange — no tests - "S2": ("#ffecb5", "#6d5a00"), # amber — oversized - "S3": ("#e2e3e5", "#383d41"), # slate — dead code - "S4": ("#f8d7da", "#721c24"), # red — lint errors -} - -SIGNAL_ICONS: dict[str, str] = { - "S1": "🧪", - "S2": "📦", - "S3": "💀", - "S4": "🔧", -} - -SIGNAL_LABELS: dict[str, str] = { - "S1": "No Tests", - "S2": "Oversized", - "S3": "Dead Code", - "S4": "Lint Errors", -} - - -# --------------------------------------------------------------------------- -# HTML generation -# --------------------------------------------------------------------------- - - -def _escape_html(text: str) -> str: - """Minimal HTML escaping for safe embedding.""" - return ( - str(text) - .replace("&", "&") - .replace("<", "<") - .replace(">", ">") - .replace('"', """) - ) - - -def _signal_badge(signal: str) -> str: - """Return an HTML span for a single signal badge. - - Parameters - ---------- - signal : str - Signal string like ``"S1:no_tests"`` or ``"S4:lint_errors(3)"``. - - Returns - ------- - str - HTML ```` element with colour-coded styling. - """ - key = signal.split(":")[0] - label = signal.split(":", 1)[1] if ":" in signal else key - bg, fg = SIGNAL_COLORS.get(key, ("#e9ecef", "#495057")) - icon = SIGNAL_ICONS.get(key, "⚠️") - return ( - f'' - f"{icon} {_escape_html(label)}" - ) - - -def _module_row(mod: dict[str, Any]) -> str: - """Return an HTML table row for a single module. - - Parameters - ---------- - mod : dict - One module entry from the dashboard metadata. - - Returns - ------- - str - HTML ```` element. - """ - path = _escape_html(mod.get("path", "?")) - lines = mod.get("lines", 0) - functions = mod.get("functions", 0) - classes = mod.get("classes", 0) - tests = mod.get("test_count", 0) - has_doc = mod.get("has_docstring", False) - signals = mod.get("signals", []) - - # Docstring indicator - doc_icon = "✅" if has_doc else "❌" - - # Test coverage bar - test_pct = min(tests * 10, 100) if tests > 0 else 0 - test_bar = ( - f'
' - f'
' - f"
" - ) - - # Signal badges - badges_html = " ".join(_signal_badge(s) for s in signals) - signals_cell = badges_html if badges_html else '✅ clear' - - return ( - f"" - f"{path}" - f"{lines}" - f"{functions}" - f"{classes}" - f"{doc_icon}" - f"{tests} {test_bar}" - f"{signals_cell}" - f"" - ) - - -def _summary_card(title: str, value: str, icon: str = "") -> str: - """Return an HTML summary card div. - - Parameters - ---------- - title : str - Card title (e.g. "Modules"). - value : str - Card value (e.g. "18"). - icon : str - Optional emoji icon. - - Returns - ------- - str - HTML ``
`` card element. - """ - return ( - f'
' - f"
{icon}
" - f"
{_escape_html(value)}
" - f"
{_escape_html(title)}
" - f"
" - ) - - -def _signal_summary_cards(signals_summary: dict[str, int]) -> str: - """Return HTML cards for each signal type count. - - Parameters - ---------- - signals_summary : dict - Mapping of signal key (S1-S4) to count. - - Returns - ------- - str - HTML fragment with signal summary cards. - """ - if not signals_summary: - return '
0
' \ - '
All Clear ✅
' - - cards = [] - for key in sorted(signals_summary.keys()): - count = signals_summary[key] - bg, fg = SIGNAL_COLORS.get(key, ("#e9ecef", "#495057")) - icon = SIGNAL_ICONS.get(key, "⚠️") - label = SIGNAL_LABELS.get(key, key) - cards.append( - f'
' - f"
{icon}
" - f"
{count}
" - f"
{label}
" - f"
" - ) - return "\n".join(cards) - - -def generate_html(metadata: dict[str, Any]) -> str: - """Generate a standalone HTML dashboard page from metadata. - - The output is a self-contained HTML document with inline CSS and JS — - no external dependencies required. Works on mobile and desktop via - responsive CSS Grid/Flexbox layout. - - Parameters - ---------- - metadata : dict - The deserialised JSON output of :func:`dashboard.generate_json`. - Must contain keys: ``package``, ``total_modules``, ``total_lines``, - ``total_functions``, ``total_classes``, ``total_tests``, - ``signals_summary``, ``modules``. - - Returns - ------- - str - Complete HTML document string. - """ - pkg = _escape_html(metadata.get("package", "unknown")) - total_modules = metadata.get("total_modules", 0) - total_lines = metadata.get("total_lines", 0) - total_functions = metadata.get("total_functions", 0) - total_classes = metadata.get("total_classes", 0) - total_tests = metadata.get("total_tests", 0) - signals_summary = metadata.get("signals_summary", {}) - modules = metadata.get("modules", []) - - # Module rows - module_rows = "\n".join(_module_row(m) for m in modules) - - # Summary cards - summary_cards = "\n".join([ - _summary_card("Modules", str(total_modules), "📁"), - _summary_card("Lines", f"{total_lines:,}", "📝"), - _summary_card("Functions", str(total_functions), "⚙️"), - _summary_card("Classes", str(total_classes), "🏗️"), - _summary_card("Tests", str(total_tests), "🧪"), - ]) - - # Signal summary - signal_cards = _signal_summary_cards(signals_summary) - - # Timestamp - now = datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M UTC") - - html = f""" - - - - -{pkg} — Health Dashboard - - - -
- -
-

📊 {pkg} Health Dashboard

-
Generated: {now}
-
- - -
- {summary_cards} -
- - -
- {signal_cards} -
- - -
-

Signal Legend

-
🧪 S1 — No Tests
-
📦 S2 — Oversized (>200 lines & >15 funcs)
-
💀 S3 — Dead Code (0 internal imports)
-
🔧 S4 — Lint/Type Errors
-
- - -
- - -
- - -
- - - - - - - - - - - - - - {module_rows} - -
ModuleLinesFuncsClassesDocTestsSignals
-
- - - -
- - - -""" - return html - - -# --------------------------------------------------------------------------- -# Publish helper -# --------------------------------------------------------------------------- - - -def publish( - html: str, - output_path: str | Path = "dashboard.html", - sync: bool = False, -) -> Path: - """Write HTML to *output_path* and optionally sync to ``gh-pages``. - - Parameters - ---------- - html : str - The HTML document string (from :func:`generate_html`). - output_path : str or Path - File path to write the HTML to. - sync : bool - If ``True``, push the HTML to a ``gh-pages`` branch via git. - - Returns - ------- - Path - The path where the HTML was written. - """ - out = Path(output_path) - out.parent.mkdir(parents=True, exist_ok=True) - out.write_text(html, encoding="utf-8") - logger.info("Dashboard HTML written to %s", out) - - if sync: - _sync_to_ghpages(out) - - return out - - -# --------------------------------------------------------------------------- -# GitHub Pages sync -# --------------------------------------------------------------------------- - - -def _sync_to_ghpages(html_path: Path) -> None: - """Push *html_path* to the ``gh-pages`` branch. - - Uses git subcommands to: - 1. Create or checkout ``gh-pages`` branch - 2. Copy the HTML file to the branch root - 3. Commit and push - - Parameters - ---------- - html_path : Path - Path to the generated HTML file. - - Raises - ------ - RuntimeError - If git is not available or push fails. - """ - try: - # Check git is available - subprocess.run( - ["git", "--version"], - capture_output=True, - check=True, - timeout=10, - ) - except (FileNotFoundError, subprocess.CalledProcessError) as exc: - raise RuntimeError(f"git not available: {exc}") from exc - - # Determine repo root - try: - result = subprocess.run( - ["git", "rev-parse", "--show-toplevel"], - capture_output=True, - text=True, - check=True, - timeout=10, - ) - repo_root = Path(result.stdout.strip()) - except subprocess.CalledProcessError as exc: - raise RuntimeError(f"Not a git repository: {exc}") from exc - - gh_pages_dir = repo_root / ".gh-pages-staging" - gh_pages_dir.mkdir(exist_ok=True) - - # Copy HTML to staging - dest = gh_pages_dir / html_path.name - dest.write_text(html_path.read_text(encoding="utf-8"), encoding="utf-8") - - # Stage, commit, push - steps = [ - ["git", "-C", str(repo_root), "checkout", "gh-pages"], - ["git", "-C", str(repo_root), "cp", str(dest), str(repo_root / html_path.name)], - ["git", "-C", str(repo_root), "add", html_path.name], - ["git", "-C", str(repo_root), "commit", "-m", - f"docs: update dashboard — {datetime.now(timezone.utc).strftime('%Y-%m-%d')}"], - ["git", "-C", str(repo_root), "push", "origin", "gh-pages"], - ] - - # Handle "nothing to commit" gracefully - for step in steps: - cmd_str = " ".join(step) - logger.debug("Running: %s", cmd_str) - result = subprocess.run(step, capture_output=True, text=True, timeout=60) - if result.returncode != 0: - # "nothing to commit" is acceptable - if "nothing to commit" in result.stderr.lower(): - logger.info("No changes to commit, skipping") - break - logger.warning("Command failed: %s\nstderr: %s", cmd_str, result.stderr) - - # Clean up staging - try: - import shutil - shutil.rmtree(gh_pages_dir) - except OSError: - pass - - logger.info("Dashboard synced to gh-pages") - - -# --------------------------------------------------------------------------- -# CLI entry point -# --------------------------------------------------------------------------- - - -def main() -> None: - """CLI entry point for publish_dashboard. - - Usage:: - - python -m alloc.lib.publish_dashboard [--json PATH] [--output PATH] [--sync] - - If ``--json`` is provided, reads metadata from that file. - Otherwise generates fresh metadata via :mod:`alloc.lib.dashboard`. - - Options - ------- - --json PATH - Path to pre-generated dashboard JSON. - --output PATH - Output HTML file path (default: ``dashboard.html``). - --sync - Push generated HTML to ``gh-pages`` branch. - """ - parser = argparse.ArgumentParser( - description="Generate HTML dashboard from alloc metadata" - ) - parser.add_argument( - "--json", - dest="json_path", - type=str, - default=None, - help="Path to pre-generated dashboard JSON", - ) - parser.add_argument( - "--output", - type=str, - default="dashboard.html", - help="Output HTML file path (default: dashboard.html)", - ) - parser.add_argument( - "--sync", - action="store_true", - help="Push generated HTML to gh-pages branch", - ) - args = parser.parse_args() - - # Load or generate metadata - if args.json_path: - json_path = Path(args.json_path) - if not json_path.exists(): - logger.error("JSON file not found: %s", json_path) - sys.exit(1) - metadata = json.loads(json_path.read_text(encoding="utf-8")) - else: - from alloc.lib.dashboard import generate_json as _gen_json - - json_str = _gen_json() - metadata = json.loads(json_str) - - # Generate and publish - html = generate_html(metadata) - publish(html, output_path=args.output, sync=args.sync) - print(f"Dashboard published to {args.output}") - - -if __name__ == "__main__": - main()