301:508c24e708e0
Anton Shestakov <av6@dwimlabs.net>, Sat, 23 Sep 2017 12:43:15 +0800
models: it's now obvious that the order of columns should be this Now the index helps with "where project_id = ?" and "order by ordinal" as well.

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()