1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: set up pg database to test ORM

This commit is contained in:
Alexander Medvednikov
2019-12-06 02:11:39 +03:00
parent 71c0c4803f
commit be323e2fb6
5 changed files with 48 additions and 37 deletions

View File

@ -2,7 +2,7 @@ module main
import (
os
testing
testing
)
pub fn main() {
@ -29,8 +29,8 @@ pub fn main() {
eprintln('Use `v test-compiler` instead.')
exit(1)
}
mut ts := testing.new_test_sesion(args_before)
mut ts := testing.new_test_session(args_before)
for targ in args_after.split(' ') {
if os.exists(targ) && targ.ends_with('_test.v') {
ts.files << targ