15 lines
351 B
Python
15 lines
351 B
Python
|
from tests.base_test import BaseTest
|
||
|
|
||
|
from crc.services.git_service import GitService
|
||
|
|
||
|
|
||
|
# class TestGitService(BaseTest):
|
||
|
|
||
|
# def test_push_to_remote(self):
|
||
|
# result = GitService().push_to_remote()
|
||
|
# print(result)
|
||
|
#
|
||
|
# def test_pull_from_remote(self):
|
||
|
# result = GitService.pull_from_remote()
|
||
|
# print(result)
|