73:a9c9da814fe3
Anton Shestakov <av6@dwimlabs.net>, Tue, 28 Jun 2016 18:52:52 +0800
viewer: setup and clone tasks without errors/warnings are collapsed by default In addition to errors and warnings, which leave task expanded, target line also does the same, so sharing a link to a specific line doesn't surprise people by hiding the line somewhere.

next change 130:7a9e1f1ae89f
previous change 71:6e9d9e772cf5

tests/test_checker.py

Permissions: -rw-r--r--

Other formats: Feeds:
from checker import run, read_linter_config
def test_run():
result = run(['true'])
assert result is True
result = run(['false'])
assert result is False
result = run(['false'], ignore_codes=(1,))
assert result is True
result = run(['false'], ignore_codes=(127,))
assert result is False
result = run(['echo', 'hi'], get_output=False)
assert result is True
result = run(['echo', 'hi'], get_output=True)
assert result == 'hi\n'
def test_read_linter_config():
config = read_linter_config('flake8')
assert config is not None
assert 'exec' in config
assert 'setup' in config
assert len(config['setup']) > 0
config = read_linter_config('perfectlinter')
assert config is None