Anton Shestakov <av6@dwimlabs.net>, Sat, 16 Jul 2016 19:05:11 +0800
viewer: request light fields when using just metadata from Check
/ and project pages just link to checks, so the heavier text fields like
Check.lines aren't actually important, and can be excluded from SELECT for a
nice performance boost.
tests/test_checker.py
Permissions: -rw-r--r--
from checker import run, read_linter_config, prevalidate result = run(['false'], ignore_codes=(1,)) result = run(['false'], ignore_codes=(127,)) result = run(['echo', 'hi'], get_output=False) result = run(['echo', 'hi'], get_output=True) def test_read_linter_config(): config = read_linter_config('flake8') assert config is not None assert len(config['setup']) > 0 config = read_linter_config('perfectlinter') assert not prevalidate({}) config = {'scm': 'fossil', 'url': 'http://www.fossil-scm.org/'} assert not prevalidate(config) config = {'scm': 'hg', 'url': 'https://selenic.com/hg'} assert prevalidate(config)