File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1313
1414PLATFORM = platform .machine ()
1515
16+ TIMEOUT = 3600
1617
1718# The `check_output` timeout will always fire before this one, but we need to
1819# set a timeout here to override the default pytest timeout of 180s.
19- @pytest .mark .timeout (2420 )
20+ @pytest .mark .timeout (TIMEOUT )
2021@pytest .mark .skipif (
2122 os .environ .get ("BUILDKITE" ) != "true" ,
2223 reason = "Kani's memory requirements likely cannot be satisfied locally" ,
@@ -33,7 +34,7 @@ def test_kani(results_dir):
3334 # --enable-unstable is needed to enable `-Z` flags
3435 _ , stdout , _ = utils .check_output (
3536 "cargo kani --enable-unstable -Z stubbing -Z function-contracts --restrict-vtable -j --output-format terse" ,
36- timeout = 2400 ,
37+ timeout = TIMEOUT ,
3738 )
3839
3940 (results_dir / "kani_log" ).write_text (stdout , encoding = "utf-8" )
You can’t perform that action at this time.
0 commit comments