-
-
Notifications
You must be signed in to change notification settings - Fork 20
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
Error: Cargo test failing #113
Comments
Probably could be fixed by replacing: /// Struct to store wayland connection and globals list.
/// # Example usage
///
/// ```
/// let wayshot_connection = WayshotConnection::new().unwrap();
/// let image_buffer = wayshot_connection.screenshot_all().unwrap();
/// ``` with: /// Struct to store wayland connection and globals list.
/// # Example usage
///
/// ```ignore
/// use libwayshot::WayshotConnection;
///
/// let wayshot_connection = WayshotConnection::new().unwrap();
/// let image_buffer = wayshot_connection.screenshot_all().unwrap();
/// ``` changes:
NotesWith ignore first change is not necessary, but still nice to have. |
13 tasks
Ohh , this is missed, please send a pr to us, thanks, I will approve it |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After this commit
cargo test
is failing. Even though it is not used in Makefile,cargo test
is used by default for rust packages in nix.So the question is: Will there be a fix for that, or should tests just be ignored?
The text was updated successfully, but these errors were encountered: