We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bca618f commit a722e0cCopy full SHA for a722e0c
tests/pipelines/lint/test_subworkflows_json.py
@@ -0,0 +1,10 @@
1
+from ..test_lint import TestLint
2
+
3
4
+class TestLintSubworkflowsJson(TestLint):
5
+ def test_subworkflows_json_pass(self):
6
+ self.lint_obj._load()
7
+ results = self.lint_obj.subworkflows_json()
8
+ assert len(results.get("warned", [])) == 0
9
+ assert len(results.get("failed", [])) == 0
10
+ assert len(results.get("passed", [])) > 0
0 commit comments