Skip to content

Commit 7b69189

Browse files
committed
chore: enable integration feature in flake check
1 parent c13c90f commit 7b69189

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,13 @@
6666

6767
clippy = craneLib.cargoClippy (commonArgs // {
6868
inherit cargoArtifacts;
69+
cargoExtraArgs = "--features integration";
6970
cargoClippyExtraArgs = "--workspace -- --deny warnings";
7071
});
7172

7273
nextest = craneLib.cargoNextest (commonArgs // {
7374
inherit cargoArtifacts;
74-
75+
cargoExtraArgs = "--features integration";
7576
CARGO_PROFILE = "";
7677
});
7778

syndterm/tests/integration.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ mod test {
2828

2929
// login
3030
let expected = Buffer::with_lines(vec![
31-
"X ",
31+
" ",
3232
" ",
3333
" ",
3434
" ",

0 commit comments

Comments
 (0)