Radish alpha
r
rad:z3qg5TKmN83afz2fj9z3fQjU8vaYE
Radicle CI adapter for native CI
Radicle
Git
refactor: use _create_git_repo
Lars Wirzenius committed 2 years ago
commit 84ed4678d8df7bf5804b2cd4bcacba05541cb13f
parent b252e87
1 file changed +2 -6
modified test-suite
@@ -102,9 +102,7 @@ class Suite:
        self.assert_success(resps[1])

    def test_without_config_env_var(self):
-
        git = Git(os.path.join(self.tmp, "no-config"))
-
        git.init()
-
        git.write("README.md", "README")
+
        git = self._create_git_repo("no-config")
        native = NativeYaml("echo hello world")
        debug(f"native.yaml: {native.yaml()}")
        git.write(".radicle/native.yaml", native.yaml())
@@ -123,9 +121,7 @@ class Suite:
        assert "RADICLE_NATIVE_CI" in stderr

    def test_config_missing(self):
-
        git = Git(os.path.join(self.tmp, "config-missing"))
-
        git.init()
-
        git.write("README.md", "README")
+
        git = self._create_git_repo("config-missing")
        native = NativeYaml("echo hello world")
        debug(f"native.yaml: {native.yaml()}")
        git.write(".radicle/native.yaml", native.yaml())