File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,14 @@ def test_gml_validator(self):
7676 self .assertTrue (validategml (gml_input , MODE .NONE ), 'NONE validation' )
7777 self .assertTrue (validategml (gml_input , MODE .SIMPLE ), 'SIMPLE validation' )
7878 self .assertTrue (validategml (gml_input , MODE .STRICT ), 'STRICT validation' )
79+ # self.assertTrue(validategml(gml_input, MODE.VERYSTRICT), 'VERYSTRICT validation')
80+ gml_input .stream .close ()
81+
82+ @pytest .mark .xfail (reason = "gml verystrict validation fails" )
83+ def test_gml_validator_verystrict (self ):
84+ """Test GML validator
85+ """
86+ gml_input = self .get_input ('gml/point.gml' , 'point.xsd' , FORMATS .GML .mime_type )
7987 self .assertTrue (validategml (gml_input , MODE .VERYSTRICT ), 'VERYSTRICT validation' )
8088 gml_input .stream .close ()
8189
You can’t perform that action at this time.
0 commit comments