Anton Shestakov <av6@dwimlabs.net>, Fri, 08 Jul 2016 22:11:17 +0800
viewer: transform time string from loose ISO 8601 to RFC 3339
This hack is possible because the format of commit date given by SCM is known.
run-tests.py
Permissions: -rwxr-xr-x
from candolint.models import database, Project, Change, Check database.init(':memory:') database.create_tables([Project, Change, Check], safe=True) database.connect = Mock() pytest.main(['tests'] + sys.argv[1:]) if __name__ == '__main__':