This commit is contained in:
2025-02-07 06:40:10 +03:00
parent 4495df4d2e
commit 3d76bc9c04
2 changed files with 1 additions and 7 deletions

View File

@@ -85,6 +85,7 @@ fn process_test_file(path string, base_dir string, test_files_ignore []string, t
// Check if any ignore pattern matches the path
for pattern in test_files_ignore {
println('Check ignore test: ${pattern} -- ${rel_path} ::: ${rel_path.contains(pattern.trim_space())}')
if pattern.trim_space() != '' && rel_path.contains(pattern.trim_space()) {
println('Ignoring test: ${rel_path}')
return

View File

@@ -1,7 +0,0 @@
import db.sqlite
fn main() {
db := sqlite.connect(':memory:')!
println('SQLite connection successful')
db.close()!
}