From daa5be4c273ba7b78d2d7b59d0500b358dd27611 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 27 Jan 2022 15:38:52 +0200 Subject: [PATCH] ci: skip vlib/v/checker/tests/modules/deprecated_module on windows for now --- vlib/v/compiler_errors_test.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vlib/v/compiler_errors_test.v b/vlib/v/compiler_errors_test.v index 20416267be..c189afab72 100644 --- a/vlib/v/compiler_errors_test.v +++ b/vlib/v/compiler_errors_test.v @@ -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