From fd9921c639f17432839143f275aa47ce989085e7 Mon Sep 17 00:00:00 2001 From: Purnendu Chakraborty Date: Fri, 5 Apr 2024 15:25:30 -0400 Subject: [PATCH] Switched from https to ssh for git cloning --- tests/test_mepo_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mepo_commands.py b/tests/test_mepo_commands.py index a6c72fcd..b7e32c51 100644 --- a/tests/test_mepo_commands.py +++ b/tests/test_mepo_commands.py @@ -22,7 +22,7 @@ class TestMepoCommands(unittest.TestCase): @classmethod def __checkout_fixture(cls): - remote = "https://github.com/pchakraborty/{}.git".format(cls.fixture) + remote = f"git@github.com:pchakraborty/{cls.fixture}.git" git_clone = "git clone " if cls.tag: git_clone += f"-b {cls.tag}"