You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
/// 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:
use libwayshot::WayshotConnection; was added to avoid errors with cargo test
ignore was used to avoid errors within nix build
Notes
With ignore first change is not necessary, but still nice to have.
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: