greyblake / cargo-testify

Watches changes in a rust project, runs test and shows friendly notification
MIT License
82 stars 5 forks source link
cargo desktop devtools notification rust test

Cargo testify

Build Status License

Automatically runs tests on your Rust project and notifies about the result.

rust test with notification

Install

Install prerequisites (for Debian/Ubuntu):

apt-get install -y libdbus-1-dev

Install the crate:

cargo install cargo-testify

Usage

Run within your Rust project:

cargo testify

How does it work?

It watches changes in the project directory, and reacts by running cargo test. The output result is parsed to identify one of the possible outcomes:

To display notification in the Desktop environment notify-send (Linux) or osascript (MacOS) commands are used.

Watched files

Bypassing options to cargo test

Run cargo test --lib on file change:

cargo testify -- --lib

License

MIT © Sergey Potapov

Contributors