1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: skip repl_test.v on windows for now

This commit is contained in:
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

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