aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2017-11-15 12:35:55 +0100
committerLoïc Hoguin <[email protected]>2017-11-15 12:35:55 +0100
commit9c5d2bfe03073453d2add525970c392782ae3eb7 (patch)
treef448431a1306b83bacc2c34525c29a65d22bf95c
parent603e0bd1bffa792fcf7b48fa661be00275b12ac7 (diff)
downloaderlang.mk-9c5d2bfe03073453d2add525970c392782ae3eb7.tar.gz
erlang.mk-9c5d2bfe03073453d2add525970c392782ae3eb7.tar.bz2
erlang.mk-9c5d2bfe03073453d2add525970c392782ae3eb7.zip
Disable colors for proper
The option was added recently.
-rw-r--r--plugins/proper.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/proper.mk b/plugins/proper.mk
index d6ae48e..fe9a980 100644
--- a/plugins/proper.mk
+++ b/plugins/proper.mk
@@ -15,7 +15,7 @@ define proper_check.erl
case atom_to_list(F) of
"prop_" ++ _ ->
io:format("Testing ~p:~p/0~n", [M, F]),
- proper:quickcheck(M:F());
+ proper:quickcheck(M:F(), nocolors);
_ ->
true
end
@@ -25,7 +25,7 @@ define proper_check.erl
case $(1) of
all -> [true] =:= lists:usort([Module(M) || M <- [$(call comma_list,$(3))]]);
module -> Module($(2));
- function -> proper:quickcheck($(2))
+ function -> proper:quickcheck($(2), nocolors)
end
of
true -> halt(0);