Cleaned Up tests

This commit is contained in:
Kevin Veen-Birkenbach
2025-12-09 14:33:32 +01:00
parent d50891dfe5
commit a4efb847ba
47 changed files with 4 additions and 8 deletions

View File

@@ -1,5 +1,3 @@
# tests/integration/test_install_repos_integration.py
import os
import tempfile
import unittest

View File

View File

@@ -6,7 +6,7 @@ Unit tests for pkgmgr.cli.commands.release.
These tests focus on the wiring layer:
- Argument handling for the release command as defined by the
top-level parser (cli_core.parser.create_parser).
top-level parser (cli.parser.create_parser).
- Correct invocation of pkgmgr.actions.release.release(...) for the
selected repositories.
- Behaviour of --preview, --list, --close, and -f/--force.

View File

@@ -22,7 +22,7 @@ from pkgmgr.cli.commands.branch import handle_branch
class TestBranchCLI(unittest.TestCase):
"""
Tests for the branch subcommands implemented in cli_core.
Tests for the branch subcommands implemented in cli.
"""
def _create_parser(self):

View File