Skip to content

use re.search to filter tests in --run

Jérome Perrin requested to merge jerome/nxdtest:feat/run-search into master

re.match only find matches where the pattern appears at the beginning of the string, whereas re.search matches if the pattern appears anywhere in the string. This is behavior is consistent with pytest, go test and ERP5's runUnitTest

Merge request reports