Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
commonArgs
// {
inherit cargoArtifacts;
cargoNextestExtraArgs = "--bin mdkd";
cargoNextestExtraArgs = "--lib --bin mdkd";
}
);
};
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ integration-test *args:
fix:
cargo clippy --all-targets --fix --allow-dirty --allow-staged

# Run tests (unit + doc; use `just integration-test` for integration tests)
# Run tests (lib + bin unit tests; use `just integration-test` for integration tests)
test *args:
cargo nextest run --bin mdkd {{args}}
cargo nextest run --lib --bin mdkd {{args}}

# Run the server
run *args:
Expand Down
Loading