From c15fa732cf00b41e45b143e7a4b1fa13e91daa0f Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Thu, 5 Jan 2017 15:00:57 -0800 Subject: [PATCH] travis: Test in release mode Alphametics is unbearably slow in debug mode. --- _test/check-exercises.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_test/check-exercises.sh b/_test/check-exercises.sh index 68d082bde..0eb6e1bab 100755 --- a/_test/check-exercises.sh +++ b/_test/check-exercises.sh @@ -49,7 +49,7 @@ for exercise in exercises/*/tests; do cargo test --quiet --no-run else # Run the test and get the status - cargo test + cargo test --release fi )