From 25f6be3940fe000f1b91ecf6655b9dca106bd673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Fri, 10 Apr 2020 03:30:59 +0200 Subject: [PATCH] Add scripts/test.sh for running tests with higher quickcheck settings --- scripts/test.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 scripts/test.sh diff --git a/scripts/test.sh b/scripts/test.sh new file mode 100755 index 0000000..a5b4f3d --- /dev/null +++ b/scripts/test.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +export QUICKCHECK_TESTS=2000 +export QUICKCHECK_GENERATOR_SIZE=1000 + +cargo test \ No newline at end of file