Skip to content

Commit

Permalink
disable hints on unrelated integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Jan 30, 2025
1 parent 478f846 commit 4c62870
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion stdlib/REPL/test/repl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,12 @@ end
# in the mix. If verification needs to be done, keep it to the bare minimum. Basically
# this should make sure nothing crashes without depending on how exactly the control
# characters are being used.
fake_repl(options = REPL.Options(confirm_exit=false,hascolor=true)) do stdin_write, stdout_read, repl
repl_options = REPL.Options(
confirm_exit=false,
hascolor=true,
hint_tab_completes=false, # these have dedicated tests and may be slow to show so disable for unrelated integration tests
)
fake_repl(options = repl_options) do stdin_write, stdout_read, repl
repl.specialdisplay = REPL.REPLDisplay(repl)
repl.history_file = false

Expand Down

0 comments on commit 4c62870

Please sign in to comment.