Andrew Gallant
Andrew Gallant
What do you think `cargo benchcmp` should do to fix this?
Yes, I've seen that and I definitely want to add better math.
Yes please! I think lifting this straight from their `.travis.yml` will do the trick: https://github.com/phsym/prettytable-rs/blob/master/.travis.yml#L15
Yeah, I don't expect the integration tests to contribute to it automatically. I think you'd have to modify the integration test suite to run `kcov` itself, and then merge the...
Yup, will do when I get a chance.
Hmmmmmmmm. I'm not as excited about this one, honestly. Not because I think it isn't useful, but because it's a large increase in functionality that I'm not sure I'll be...
I've generally tried to keep test stuff inside the crate, although I don't have any automated processes in place to check it. The reason why I have done that is...
Ah gotya. I didn't look too closely at the specific setup here. :-)
@drichardson Just a quick note: `sift` won't respect your `.gitignore` files by default, where as ripgrep will. If you pass `--git` to `sift` (or `--no-ignore` to ripgrep), then your comparison...
It's not quite that simple. It's pretty typical for tools to change their behavior based on whether they believe [stdin is _readable_ or not](https://docs.rs/grep-cli/0.1.6/grep_cli/fn.is_readable_stdin.html). Whether stdin is attached to a...