Radish alpha
r
rad:z3qg5TKmN83afz2fj9z3fQjU8vaYE
Radicle CI adapter for native CI
Radicle
Git
refactor: drop dead code
Lars Wirzenius committed 2 years ago
commit a8fc705087082ebbf433dc1ee6724396220fb1a4
parent a99dec5
1 file changed +0 -34
modified test-suite
@@ -173,40 +173,6 @@ class Suite:
        assert "string" in stderr


-
class TestCase:
-
    def __init__(self, tmp, name):
-
        self._tmp = tmp
-
        self._name = name
-

-
    def shell(self, shell):
-
        self._shell = shell
-

-
    def setup(self, shell):
-
        git = Git(os.path.join(self._tmp, self._name))
-
        git.init()
-
        git.write("README.md", "README")
-
        native = NativeYaml(shell)
-
        debug(f"native.yaml: {native.yaml()}")
-
        git.write(".radicle/native.yaml", native.yaml())
-
        git.commit("first commit")
-

-
        commit = git.head()
-
        self.rad.init(git)
-
        rid = self.rad.rid(git)
-

-
        return rid, commit
-

-
    def create_ci(self, rad, config):
-
        return NativeCI(rad, config)
-

-
    def run_ci(self, ci, rid, commit):
-
        trigger = Trigger(rid, commit)
-
        exit, resps = ci.run(trigger)
-
        debug(f"exit: {exit}")
-
        debug(f"responses: {resps}")
-
        return exit, resps
-

-

class Git:
    def __init__(self, path):
        self.path = path