We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c57e53 commit ab498d9Copy full SHA for ab498d9
test/functional/test_runner.py
@@ -783,8 +783,8 @@ def check_script_prefixes():
783
def check_script_list(*, src_dir, fail_on_warn):
784
"""Check scripts directory.
785
786
- Check that there are no scripts in the functional tests directory which are
787
- not being run by pull-tester.py."""
+ Check that all python files in this directory are categorized
+ as a test script or meta script."""
788
script_dir = src_dir + '/test/functional/'
789
python_files = set([test_file for test_file in os.listdir(script_dir) if test_file.endswith(".py")])
790
missed_tests = list(python_files - set(map(lambda x: x.split()[0], ALL_SCRIPTS + NON_SCRIPTS)))
0 commit comments