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.
2 parents 2a9eb0b + 53fa738 commit 12ae517Copy full SHA for 12ae517
2 files changed
flake.nix
@@ -195,7 +195,7 @@
195
commonArgs
196
// {
197
inherit cargoArtifacts;
198
- cargoNextestExtraArgs = "--bin mdkd";
+ cargoNextestExtraArgs = "--lib --bin mdkd";
199
}
200
);
201
};
justfile
@@ -94,9 +94,9 @@ integration-test *args:
94
fix:
95
cargo clippy --all-targets --fix --allow-dirty --allow-staged
96
97
-# Run tests (unit + doc; use `just integration-test` for integration tests)
+# Run tests (lib + bin unit tests; use `just integration-test` for integration tests)
98
test *args:
99
- cargo nextest run --bin mdkd {{args}}
+ cargo nextest run --lib --bin mdkd {{args}}
100
101
# Run the server
102
run *args:
0 commit comments