Lines Matching +full:pylint +full:- +full:exit
10 # SPDX-License-Identifier: Apache-2.0
16 # http://www.apache.org/licenses/LICENSE-2.0
54 * Individual test cases in ssl-opt.sh.
73 """Return a new per-file state object.
75 The default per-file state object is None. Child classes that require per-file
78 #pylint: disable=no-self-use
84 descriptions = self.new_per_file_state() # pylint: disable=assignment-from-none
100 """Iterate over the test cases in ssl-opt.sh or a file with a similar format."""
101 descriptions = self.new_per_file_state() # pylint: disable=assignment-from-none
133 ssl_opt_sh = os.path.join(directory, 'ssl-opt.sh')
136 for ssl_opt_file_name in glob.glob(os.path.join(directory, 'opt-testcases',
168 if re.search(br'[^ -~]', description):
170 'Non-ASCII character in description')
179 parser.add_argument('--quiet', '-q',
182 parser.add_argument('--verbose', '-v',
184 help='Show warnings (default: on; undoes --quiet)')
192 sys.exit(1 if results.errors else 0)