Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 128597e

Browse files
committed
--run-case is now case insensitive
1 parent b91c829 commit 128597e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def liveTest():
129129
if case.hasAttribute("name"):
130130
name = case.getAttribute("name")
131131

132-
if conf.runCase and ((conf.runCase.isdigit() and conf.runCase != count) or not re.search(conf.runCase, name, re.DOTALL)):
132+
if conf.runCase and ((conf.runCase.isdigit() and conf.runCase != count) or not re.search(conf.runCase, name, re.DOTALL | re.I)):
133133
continue
134134

135135
if case.getElementsByTagName("switches"):

0 commit comments

Comments
 (0)