From ad7bc3767263993eb7cf42096e4a4466959261dd Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 18 Jan 2020 07:27:50 +0100 Subject: [PATCH] skip httpbin test on msvc for now --- tools/modules/testing/common.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/modules/testing/common.v b/tools/modules/testing/common.v index 0710050322..a239814816 100644 --- a/tools/modules/testing/common.v +++ b/tools/modules/testing/common.v @@ -44,7 +44,7 @@ pub fn (ts mut TestSession) test() { relative_file := dot_relative_file.replace('./', '') file := os.realpath(relative_file) $if windows { - if file.contains('sqlite') { + if file.contains('sqlite') || file.contains('httpbin') { continue } }