298:7a103296a019
Anton Shestakov <av6@dwimlabs.net>, Wed, 20 Sep 2017 11:25:26 +0800
viewer: use two columns for info lists on check page for small screens too Since lists themselves switch to one column on small screens, there's enough space for both of them side by side.

next change 339:641a6a8ee1b6
previous change 228:f45f894eb706

run-tests.py

Permissions: -rwxr-xr-x

Other formats: Feeds:
#!/usr/bin/env python
import sys
import pytest
from mock import Mock
from candolint.models import database, Project, Change, Check
def main():
database.init(':memory:')
database.connect()
database.create_tables([Project, Change, Check], safe=True)
database.init = Mock()
database.connect = Mock()
database.close = Mock()
sys.exit(pytest.main(['tests'] + sys.argv[1:]))
if __name__ == '__main__':
main()