This repository was archived by the owner on Dec 29, 2021. It is now read-only.
This repository was archived by the owner on Dec 29, 2021. It is now read-only.
cargo test --release
should test the release binary not the debug one #86
Closed

Description
Here is my motivation or use case:
I'm busy writing a solver for a game and I'd like to test it using assert_cli
. In release mode the solver takes around 2 minutes to run. In debug it takes more than 20 minutes. (I've never waited longer.) For this reason, I only want to test the binary built in release mode. At the moment, this is not possible as assert_cli
doesn't respect the --release
flag.