Move git to tools

Signed-off-by: Katarzyna Treder <katarzyna.treder@h-partners.com>
This commit is contained in:
Katarzyna Treder
2024-12-10 14:32:50 +01:00
parent 4e8ea659da
commit b724419a4f
5 changed files with 7 additions and 7 deletions

View File

@@ -9,7 +9,8 @@ import os
from core.test_run import TestRun
from api.cas import cas_module
from api.cas.version import get_installed_cas_version
from test_utils import os_utils, git
from test_utils import os_utils
from test_tools import git
from connection.utils.output import CmdException

View File

@@ -6,7 +6,7 @@
import re
from test_utils import git
from test_tools import git
from core.test_run import TestRun
from connection.utils.output import CmdException
@@ -43,7 +43,7 @@ class CasVersion:
def get_available_cas_versions():
release_tags = git.get_release_tags()
release_tags = git.get_tags()
versions = [CasVersion.from_git_tag(tag) for tag in release_tags]