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:
parent
657270faa8
commit
86a2562fa7
@ -33,6 +33,14 @@ mut:
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn test_all_v_repl_files() {
|
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{
|
mut session := &Session{
|
||||||
options: runner.new_options()
|
options: runner.new_options()
|
||||||
bmark: benchmark.new_benchmark()
|
bmark: benchmark.new_benchmark()
|
||||||
|
Loading…
Reference in New Issue
Block a user