Skip to content

Commit

Permalink
Set CLICOLOR_FORCE=0
Browse files Browse the repository at this point in the history
Since ocaml#6340 we're considering `CLICOLOR_FORCE` to determine whether
stderr supports color. However this changes behavior observable from the
test suite, so `CLICOLOR_FORCE=1 make test` fails (this is tracked as
ocaml#6607).

The issue is that ocaml/setup-ocaml#631, this variable is set in the CI
environment. So we disable it until the situation is fixed (and this
variable does not have observable changes anymore).

Signed-off-by: Etienne Millon <[email protected]>
  • Loading branch information
emillon committed Nov 30, 2022
1 parent 7e0cba9 commit ba1fddf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dune-file
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,5 @@

(env
(_
(flags :standard -alert -unstable)))
(flags :standard -alert -unstable)
(env-vars (CLICOLOR_FORCE 0))))

0 comments on commit ba1fddf

Please sign in to comment.