From 3640bd2fdab84fc6ea0d487ef9c44a92b8b57fe5 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 14 Aug 2020 01:11:12 +0300 Subject: [PATCH] tests: skip vweb_test.v on ubuntu-musl and on windows --- cmd/tools/vtest-fixed.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/tools/vtest-fixed.v b/cmd/tools/vtest-fixed.v index a40ae7df1b..0f967c5450 100644 --- a/cmd/tools/vtest-fixed.v +++ b/cmd/tools/vtest-fixed.v @@ -17,6 +17,7 @@ const ( 'vlib/sqlite/sqlite_test.v', 'vlib/orm/orm_test.v', 'vlib/clipboard/clipboard_test.v', + 'vlib/vweb/tests/vweb_test.v', ] skip_on_linux = []string{} skip_on_non_linux = [ @@ -25,6 +26,7 @@ const ( skip_on_windows = [ 'vlib/orm/orm_test.v', 'vlib/net/websocket/ws_test.v', + 'vlib/vweb/tests/vweb_test.v', ] skip_on_non_windows = []string{} skip_on_macos = []string{}