feat: Upgrade to uv and Python 3.12
Test and coverage / build (push) Failing after 4m23s

This commit is contained in:
2026-06-27 22:34:50 +03:00
parent db1f6f421a
commit fd88aabe46
17 changed files with 749 additions and 60 deletions
+2 -2
View File
@@ -18,8 +18,8 @@ from src.config import Config, read_ini_config
token="something",
repository_format="{owner}/{name}",
out_dir="/home/user/repositories",
endpoint="https://example.com",
ssh_key_path="/tmp/no_key"
endpoint="https://example.com",
ssh_key_path="/tmp/no_key",
),
),
("[main]", None),
+1 -1
View File
@@ -9,7 +9,7 @@ from src.repository_name import is_valid_format
("{blabla}", False),
("", True),
("{owner}/{name}", True),
]
],
)
def test_name_formatting(name_format, expected):
assert is_valid_format(name_format) == expected