-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
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
Only compile tests for fpm test command #92
Comments
How would we implement this behaviour? Would we remove the tests when building the model from the manifest or should we just filter them out from the targets? |
Model should have everything. Then in |
I agree and would suggest keeping everything in the model and simply filtering them out with additional arguments when building the target list in |
fpm build
and fpm test
cargo build
does not build tests. You have to docargo build --tests
to also build tests.cargo test
build tests (if needed) and runs them.I suggest we follow the same approach.
The text was updated successfully, but these errors were encountered: