We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8044863 commit 938c511Copy full SHA for 938c511
default.nix
@@ -12,6 +12,7 @@ in with pkgs; stdenv.mkDerivation rec {
12
SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt";
13
14
nativeBuildInputs = [ rustup ];
15
+ buildInputs = [ cargo-nextest ];
16
17
# Runtime dependencies (for the example runners).
18
LD_LIBRARY_PATH = with xorg; lib.makeLibraryPath [
tests/difftests/README.md
@@ -160,6 +160,12 @@ config.write_metadata(&metadata)?;
160
161
## Running Tests
162
163
+### Install cargo-nextest:
164
+
165
+```sh
166
+cargo install cargo-nextest
167
+```
168
169
### Run all difftests:
170
171
```sh
0 commit comments