Continuous Test Development for Rust

Ruby has Autotest , Wallabyjs JavaScript , both run the test and present the results automatically every time they are saved.

Is there a verification-based continuous testing system for rust?

Otherwise, what is the reason for the absence? Is there a technical reason why such a system has nothing to do with rust or just doesn't care about writing it?

+4
source share
1 answer

You can use cargo-watch.

  • Install it by running $ cargo install cargo-watch
  • In the project directory, run $ cargo watch(or $ cargo watch test, to be specific)

JS Ruby: Rust - , . , , .

+5

Source: https://habr.com/ru/post/1628620/


All Articles