Skip to content

Commit c65d220

Browse files
committed
Merge #973: Remove --features flag from sane just recipe
a572848 ci: remove `--features` flag from `sane` just recipe (nymius) Pull request description: While executing `just sane` I received the following error message: ```bash cargo test --quiet --all-targets --no-default-features --features > /dev/null || exit 1 error: a value is required for '--features <FEATURES>' but none was supplied For more information, try '--help'. error: Recipe `sane` failed on line 34 with exit code 1 ``` I removed the flag because if fixes the issue and the flag is not receiving a feature list. ACKs for top commit: apoelstra: ACK a572848; successfully ran local tests Tree-SHA512: 963a2800b211c8b86c14ad2292296fc069c2810fa400d8ea6c875c18278f054043c3ac51a77b7574938a40e39fa3d3ce8baee6d942b4414a1fd95587ef3d04a6
2 parents 32554e0 + a572848 commit c65d220

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ docsrs:
3131

3232
# Quick and dirty CI useful for pre-push checks.
3333
sane: fmt-check lint
34-
cargo test --quiet --all-targets --no-default-features --features > /dev/null || exit 1
34+
cargo test --quiet --all-targets --no-default-features > /dev/null || exit 1
3535
cargo test --quiet --all-targets > /dev/null || exit 1
3636
cargo test --quiet --all-targets --all-features > /dev/null || exit 1
3737

0 commit comments

Comments
 (0)