We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys,
is there any way to configure extra flags for rustic-cargo-current-test because if my case some tests are hidden behind feature flags
rustic-cargo-current-test
so for all tests I've enabled it using .dir-local.el file like
.dir-local.el
... (rustic-mode . ((rustic-test-arguments . --all-features))))
but when I run rustic-cargo-current-test there is no way pass these flags because it's been overridden by the test name
Thank you in advance!
The text was updated successfully, but these errors were encountered:
I found a workaround using
.cargo/config.timl
[alias] t = "test --all-features"
and .dir-locals.el
.dir-locals.el
(rustic-mode . ((rustic-cargo-test-exec-command . "t") (rustic-test-arguments . "")))
Sorry, something went wrong.
No branches or pull requests
Hi guys,
is there any way to configure extra flags for
rustic-cargo-current-test
because if my case some tests are hidden behind feature flagsso for all tests I've enabled it using
.dir-local.el
file likebut when I run
rustic-cargo-current-test
there is no way pass these flags because it's been overridden by the test nameThank you in advance!
The text was updated successfully, but these errors were encountered: