File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # SQLITE_HOST="/root/db.sqlite3"
2- SQLITE_HOST = " :memory:"
1+ SQLITE_HOST = " /root/db.sqlite3"
2+ # SQLITE_HOST=":memory:"
33PG_URL = " postgresql://user:pass@postgres:5432/database"
44MARIA_URL = " mariadb://user:pass@mariadb:3306/database"
55MY_URL = " mysql://user:pass@mysql:3306/database"
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ requires "checksums >= 0.1.0"
2121import strformat, os
2222
2323task test, " run testament test" :
24- exec & " testament p 'tests/sqlite/test *.nim' "
25- exec & " testament p 'tests/postgres/test *.nim' "
26- exec & " testament p 'tests/mariadb/test *.nim' "
27- exec & " testament p 'tests/mysql/test *.nim' "
28- exec & " testament p 'tests/surrealdb/test *.nim' "
29- exec & " testament p 'tests/utils/test *.nim' "
24+ exec & " testament p 'tests/sqlite/test_ *.nim' "
25+ exec & " testament p 'tests/postgres/test_ *.nim' "
26+ exec & " testament p 'tests/mariadb/test_ *.nim' "
27+ exec & " testament p 'tests/mysql/test_ *.nim' "
28+ exec & " testament p 'tests/surrealdb/test_ *.nim' "
29+ exec & " testament p 'tests/utils/test_ *.nim' "
3030
3131 for kind, path in walkDir (getCurrentDir () / " tests" ):
3232 if not path.contains (" ." ) and path.fileExists ():
You can’t perform that action at this time.
0 commit comments