File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
sdks/python/apache_beam/yaml Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -1099,6 +1099,7 @@ def test_expand_pipeline_with_incorrect_pipelines_key_fails(self):
10991099 with self .assertRaises (KeyError ):
11001100 expand_pipeline (p , spec , validate_schema = None )
11011101
1102+ @unittest .skipIf (jsonschema is None , "Yaml dependencies not installed" )
11021103 def test_expand_pipeline_with_valid_schema (self ):
11031104 spec = '''
11041105 pipeline:
@@ -1112,6 +1113,7 @@ def test_expand_pipeline_with_valid_schema(self):
11121113 with new_pipeline () as p :
11131114 expand_pipeline (p , spec , validate_schema = 'generic' )
11141115
1116+ @unittest .skipIf (jsonschema is None , "Yaml dependencies not installed" )
11151117 def test_expand_pipeline_with_invalid_schema (self ):
11161118 spec = '''
11171119 pipeline:
You can’t perform that action at this time.
0 commit comments