ci: skip repl_test.v on windows for now

pull/13261/head
Delyan Angelov 2022-01-23 01:36:51 +02:00
parent 657270faa8
commit 86a2562fa7
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 8 additions and 0 deletions

View File

@ -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()