This commit is contained in:
2024-12-25 10:25:08 +01:00
parent a7e714058f
commit 49c21fbf4e

View File

@@ -146,12 +146,15 @@ for test in test_files {
files := os.walk_ext(full_path, '.v')
for file in files {
base_file := os.base(file)
if base_file in test_files_ignore {
println('Ignoring test: ${file}')
tests_in_error << file
continue
}
dotest(file, redis_available)!
if base_file !in test_files_ignore && base_file !in test_files_error{
dotest(full_path, redis_available)!
} else {
println('Ignoring test: ${full_path}')
if base_file !in test_files_ignore {
tests_in_error << full_path
}
}
}
} else if os.is_file(full_path) {
// If single file, run test if not in ignore list