ci: skip vlib/v/checker/tests/modules/deprecated_module on windows for now

pull/13299/head
Delyan Angelov 2022-01-27 15:38:52 +02:00
parent 9dce8194a8
commit daa5be4c27
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 3 additions and 0 deletions

View File

@ -213,6 +213,9 @@ fn (mut tasks Tasks) run() {
m_skip_files << 'vlib/v/checker/tests/missing_c_lib_header_1.vv'
m_skip_files << 'vlib/v/checker/tests/missing_c_lib_header_with_explanation_2.vv'
}
$if windows {
m_skip_files << 'vlib/v/checker/tests/modules/deprecated_module'
}
for i in 0 .. tasks.all.len {
if tasks.all[i].path in m_skip_files {
tasks.all[i].is_skipped = true