Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Treat .xml files like XHTML files for test discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Oct 15, 2015
1 parent 6d79008 commit 7f53cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifest/sourcefile.py
Expand Up @@ -134,7 +134,7 @@ def markup_type(self):
ext = ext[1:]
if ext in ["html", "htm"]:
return "html"
if ext in ["xhtml", "xht"]:
if ext in ["xhtml", "xht", "xml"]:
return "xhtml"
if ext == "svg":
return "svg"
Expand Down

0 comments on commit 7f53cbb

Please sign in to comment.