Rain
Rain
Unfortunately the nested `` approach might not work because most tooling can't handle it -- they expect the ``/``/`` pattern. For example, see https://github.com/sebastianbergmann/phpunit/issues/2964. So the options are: * Duplicate...
Thanks -- yeah, this has been a problem for a while. I'd definitely like to change the default at some point, but that would have to be a carefully-managed behavior...
Yeah -- though in this other case we decided to let you say `relative-to = "target"`, which we should probably be consistent with. https://nexte.st/docs/ci-features/archiving/#adding-extra-files-to-an-archive So you'd say ```toml store.dir =...
Absolutely agreed that this is an issue -- please submit a PR!
I've started on this in https://github.com/nextest-rs/nextest/pull/2154. I would love somebody's help completing this (in particular, writing tests for this). I'm also not sure how temporary target directories should be handled,...
You can list out multiple tests in the macro with the same patterns. Would that work for you? https://github.com/oxidecomputer/daft/blob/main/daft-derive/tests/snapshot_test.rs is an example that lists out two tests with different patterns,...
Hey, nextest author here. > [The nextest documentation](https://nexte.st/docs/features/slow-tests/#termination-on-windows) notes that it uses Windows job objects to terminate process trees "immediately," which I would be taken to think might explain this...
And it suggests a possible improvement in nextest -- maybe on a ctrl-c, nextest should wait for processes to exit by themselves (for the [`grace-period` setting](https://nexte.st/docs/features/slow-tests/#how-nextest-terminates-tests), default 10s) before calling...
> The cloning happens from a local path, which means a git process will be spawned which acts as a server speaking the git protocol. When a signal arrives, I...
I found this code in git: https://github.com/git/git/blob/2ccc89b0c16c51561da90d21cfbb4b58cc877bf6/compat/mingw.c#L681 Unfortunately, Git is not really a native Windows application, so internally Ctrl-C gets translated via MinGW into SIGINT. This translation layer might be...