Rain

Results 514 comments of Rain

@HadrienG2 I think that would be part of #20 if I'm understanding you correctly.

Hi François, hope you're well! I agree that this would be great and I think nextest should learn how to write a markdown summary to a file.

> If there is a branch attached to the commit, then jj will correctly track the rewrite the next time it imports refs. I don't know what your workflow looks...

I wrote some very basic support using the jj cli -- it likely needs more polish, but it works okay: https://github.com/getcord/spr/compare/master...sunshowers:spr:master

Thanks for the kind words! Sadly that isn't possible via `From` directly: ``` error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the...

Thanks. This is a good flag -- what's happened is that this causes the child to raise a SIGTTOU signal on itself, and the default behavior of that signal is...

> I wish there were a way to change the signal handler for SIGTTOU/SIGTTIN to terminate the process, but I don't believe there is. Probably too intrusive for a test...

Yes, if we allow using a pty for each test, then I was eyeing the portable_pty crate to make that happen.

Thanks -- could jobserver 0.1.30 be yanked so downstream consumers get the right message?

(camino maintainer here) Meanwhile, you can use this really simple impl: ```rust fn path_schema(gen: &mut SchemaGenerator) -> Schema { let mut schema: SchemaObject = ::json_schema(gen).into(); schema.format = Some("Utf8PathBuf".to_owned()); schema.into() }...