-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make glob detection apply more modularly
The filter and each skip rule are now all interpreted as test name patterns separately. This means that, unless `--glob` is passed, only patterns containing glob characters are considered glob patterns. For example: foo --skip *_slow Will consider `foo` a substring pattern, and `*_slow` a glob pattern. Similarly *_fast --skip bar Will run `foo_fast`, but not `bar_fast`.
- Loading branch information
Showing
2 changed files
with
73 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters