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

ci: don't run sqlite test on windows for now

This commit is contained in:
Alexander Medvednikov
2019-10-28 12:32:03 +03:00
parent a7568ea54b
commit 44b99bc299
2 changed files with 4 additions and 1 deletions

View File

@@ -80,6 +80,9 @@ pub fn (ts mut TestSession) test() {
for dot_relative_file in ts.files {
relative_file := dot_relative_file.replace('./', '')
file := os.realpath( relative_file )
$if windows {
if file.contains('sqlite') { continue }
}
tmpc_filepath := file.replace('.v', '.tmp.c')
mut cmd := '"$ts.vexe" $ts.vargs "$file"'