File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,12 @@ variables:
31
31
PROFILE_TESTS :
32
32
description : " Enable profiling of tests"
33
33
value : " false"
34
+ NON_DEFAULT_JVMS :
35
+ description : " Enable tests on JVMs that are the default"
36
+ value : " false"
37
+ RUN_FLAKY_TESTS :
38
+ description : " Enable flaky tests"
39
+ value : " false"
34
40
35
41
.test_matrix : &test_matrix
36
42
- testJvm : &test_jvms
@@ -498,7 +504,10 @@ test_flaky:
498
504
CACHE_TYPE : " base"
499
505
testJvm : " 8"
500
506
CONTINUE_ON_FAILURE : " true"
501
- rules : *master_only
507
+ rules :
508
+ - *master_only
509
+ - if : $RUN_FLAKY_TESTS == "true"
510
+ when : on_success
502
511
parallel :
503
512
matrix :
504
513
- GRADLE_TARGET : [":baseTest", ":smokeTest", ":debuggerTest"]
@@ -514,7 +523,10 @@ test_flaky_inst:
514
523
CACHE_TYPE : " inst"
515
524
testJvm : " 8"
516
525
CONTINUE_ON_FAILURE : " true"
517
- rules : *master_only
526
+ rules :
527
+ - *master_only
528
+ - if : $RUN_FLAKY_TESTS == "true"
529
+ when : on_success
518
530
parallel : 6
519
531
520
532
test_profiling :
You can’t perform that action at this time.
0 commit comments