Rain

Results 514 comments of Rain

I'm currently implementing the "workspace-aware unification" model described above using [guppy](https://github.com/facebookincubator/cargo-guppy/), see the documentation for [hakari](https://facebookincubator.github.io/cargo-guppy/rustdoc/hakari/) for more details. We're [about to ship it](https://github.com/diem/diem/pull/7161) in [Diem Core](https://github.com/diem/diem). Seems to work...

In Jujutsu, the working copy doesn't automatically become the `HEAD` ref in Git -- it is committed separately, without affecting `HEAD`. Only if you run something like `jj commit` does...

A key difference between `jj diff` and `git diff`, though, is that `jj` does not have the notion of untracked files. ``` % git init % jj git init --git-repo...

Thanks. Do you mean removing the lines that say: "running 1 test" "test [...] ok" "test result: ok. [...]" Interesting thought for sure! I think we can probably do something...

Maintainer of nextest here -- it's a bit surprising that doctests cause a rebuild because I don't see that on my own projects, it's worth digging into why that is...

Related to this, it would be great if we could configure the token to be fetched via a simple command -- my personal preference for this would be to store...

I'm happy to help and/or add features to nextest as necessary, time permitting. Since I last commented here, the main thing that's changed is that an increasing number of projects...

Note: `cargo build --tests` is not the right command in either case, because it uses the `dev` profile while `cargo test` uses the `test` profile. The two are typically the...

> I see there is also a [library interface](https://docs.rs/nextest-runner/latest/nextest_runner/). Oh, didn't see this earlier. I'd strongly recommend using the nextest binary -- the library one isn't stable (each release bumps...