From 86a2562fa7d132aafb556271842a932528da200a Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 23 Jan 2022 01:36:51 +0200 Subject: [PATCH] ci: skip repl_test.v on windows for now --- vlib/v/tests/repl/repl_test.v | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vlib/v/tests/repl/repl_test.v b/vlib/v/tests/repl/repl_test.v index 830de4cabe..c8f134811a 100644 --- a/vlib/v/tests/repl/repl_test.v +++ b/vlib/v/tests/repl/repl_test.v @@ -33,6 +33,14 @@ mut: } fn test_all_v_repl_files() { + if os.user_os() == 'windows' { + if os.getenv('VTEST_ENABLE_REPL') == '' { + println('This test is disabled on windows temporarily') + println('set VTEST_ENABLE_REPL=1') + println('if you do want to run it anyway.') + exit(0) + } + } mut session := &Session{ options: runner.new_options() bmark: benchmark.new_benchmark()