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
test-crate
While trying to package the crate for Debian, we noticed that it is not possible to run the test suite because you don't ship the test-crate dir.
Example of error:
error[E0432]: unresolved import `test_crate` --> tests/ok.rs:1:5 | 1 | use test_crate::*; | ^^^^^^^^^^ use of undeclared crate or module `test_crate` error: cannot find macro `ok` in this scope --> tests/ok.rs:3:1 | 3 | ok!(it_works); | ^^
The text was updated successfully, but these errors were encountered:
test_crate
I've tried adding
include = ["src", "tests", "test-crate", "README.md"]
to the Cargo.toml but that still seems to cause this error in the output of cargo package .
Cargo.toml
cargo package
PRs are welcome, but I'll take a look into this at some point.
Sorry, something went wrong.
No branches or pull requests
While trying to package the crate for Debian, we noticed that it is not possible to run the test suite because you don't ship the
test-crate
dir.Example of error:
The text was updated successfully, but these errors were encountered: