Radish alpha
r
rad:z3qg5TKmN83afz2fj9z3fQjU8vaYE
Radicle CI adapter for native CI
Radicle
Git
refactor: use _create_valid_native_yaml
Lars Wirzenius committed 2 years ago
commit 5336bf8195015a4d5d804444123e78fdb436d240
parent 84ed467
1 file changed +2 -8
modified test-suite
@@ -103,10 +103,7 @@ class Suite:

    def test_without_config_env_var(self):
        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())
-
        git.commit("first commit")
+
        self._create_valid_native_yaml(git, "echo hello world")
        commit = git.head()
        self.rad.init(git)
        rid = self.rad.rid(git)
@@ -122,10 +119,7 @@ class Suite:

    def test_config_missing(self):
        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())
-
        git.commit("first commit")
+
        self._create_valid_native_yaml(git, "echo hello world")
        commit = git.head()
        self.rad.init(git)
        rid = self.rad.rid(git)