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
Some integration tests, such as in tls-mpc are expensive so they are marked ignore, but these still need to be run in CI.
tls-mpc
ignore
The text was updated successfully, but these errors were encountered:
@sinui0 Do you want an extra CI step to run all ignored tests?
cargo test -- --ignored
, we can also include the ignored tests when we run the other tests:
cargo test -- --include-ignored
We could also introduce a expensive_tests feature, if we need to run only a few specific tests and ignore other tests.
expensive_tests
Sorry, something went wrong.
For now easiest is probably option 2, running ignored with the rest.
Might need option 1, because the ignored tests need to be run with release build
@sinui0 seems like this has been addressed by #537?
No branches or pull requests
Some integration tests, such as in
tls-mpc
are expensive so they are markedignore
, but these still need to be run in CI.The text was updated successfully, but these errors were encountered: