42:06c224e8b052
Anton Shestakov <av6@dwimlabs.net>, Sun, 19 Jun 2016 14:07:11 +0800
incoming: skip checking the whole line when it's linter output When a line starts with a certain pattern, it's recognized as linter output, but determining if it's an error or a warning was done looking at the whole string again multiple times. Let's save on regexes and look only on the important part.

next change 49:82badf3033e4
previous change 35:d0d03f67dc1f

run-tests.py

Permissions: -rwxr-xr-x

Other formats: Feeds:
#!/usr/bin/env python
import pytest
def main():
pytest.main(['tests'])
if __name__ == '__main__':
main()