Anton Shestakov <av6@dwimlabs.net>, Tue, 28 Jun 2016 22:36:05 +0800
viewer: restyle regular badges to be a bit more like status badges
In practice, it means: no border, 3px rounded corners and more pronounced text
shadow.
tests/test_checker.py
Permissions: -rw-r--r--
from checker import run, read_linter_config 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')