##// END OF EJS Templates
run-tests: add a "--blacklist target" option to skip predefined test lists...
run-tests: add a "--blacklist target" option to skip predefined test lists Rely on a ConfigParser file, tests/blacklist, to define blacklist targets. This allows exposing specific test suites for testing incomplete/particular features, e.g. "run-tests.py --blacklist inotify-failures --inotify *"

File last commit:

r9959:b37b060d default
r9959:b37b060d default
Show More
blacklist
14 lines | 514 B | text/plain | TextLexer
# ConfigParser format
# Definitions of blacklists for run-tests.py
#
# Identify in config sections a list of tests you want to be skipped.
# Section names are meant to be used as targets for run-tests.py --blacklist
# option.
# "test-" prefixes should be omitted from test names. Values are not used.
#
# e.g. if your file looks like:
## [example]
## hgrc =
## help = "this string is not used"
# then calling "run-tests.py --blacklist example" will exclude test-hgrc and
# test-help from the list of tests to run.