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

ci: fix v vet filtering

This commit is contained in:
Delyan Angelov
2020-08-12 20:33:51 +03:00
parent 9478ff472f
commit 1a96bcf405
2 changed files with 8 additions and 3 deletions

View File

@ -8,7 +8,8 @@ fn test_vet() {
os.chdir(vroot)
test_dir := 'vlib/v/vet/tests'
tests := get_tests_in_dir(test_dir)
assert check_path(vexe, test_dir, tests) == 0
fails := check_path(vexe, test_dir, tests)
assert fails == 0
}
fn get_tests_in_dir(dir string) []string {