Skip to content

Commit

Permalink
Up the test timeouts
Browse files Browse the repository at this point in the history
Reviewed By: CatherineGasnier

Differential Revision: D65369924

fbshipit-source-id: 042f288d9c73d4672501cfa3e91149e37eac79b0
  • Loading branch information
Mistral Contrastin authored and facebook-github-bot committed Nov 4, 2024
1 parent 7e77fe6 commit 23b0966
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hphp/hack/test/milner/verify_well_typed.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def milner_and_type_check(
result = subprocess.run(
[milner_exe, os.path.abspath(template_file), "--seed", str(seed)],
stdout=out,
timeout=60,
timeout=120,
)

if result.returncode != 0:
Expand All @@ -71,7 +71,7 @@ def milner_and_type_check(
result = subprocess.run(
[hhstc_exe, temp_file],
capture_output=True,
timeout=60,
timeout=120,
)

# Check if the verifier found any errors
Expand Down

0 comments on commit 23b0966

Please sign in to comment.