Skip to content

Commit 3226b77

Browse files
committed
.
1 parent 9fab322 commit 3226b77

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# SQLITE_HOST="/root/db.sqlite3"
2-
SQLITE_HOST=":memory:"
1+
SQLITE_HOST="/root/db.sqlite3"
2+
# SQLITE_HOST=":memory:"
33
PG_URL="postgresql://user:pass@postgres:5432/database"
44
MARIA_URL="mariadb://user:pass@mariadb:3306/database"
55
MY_URL="mysql://user:pass@mysql:3306/database"

allographer.nimble

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ requires "checksums >= 0.1.0"
2121
import strformat, os
2222

2323
task 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():

0 commit comments

Comments
 (0)