-
Notifications
You must be signed in to change notification settings - Fork 61
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
Consider to clarify the test messages which cargo test
creates, so it's obvious this was done by a test.
#371
Comments
Funny! Not sure if there is a way to disable this since the test notifications are coming from the Maybe just changing the messages to be more descriptive might work. |
Thanks for reporting. I also had a good laugh at this :-) I agree that just improving the messages should be good enough. |
:)
Also agree on changing the message to somewhat descriptive should be fine. Also that the |
I guess the AUR package doesn't really need to run the test, right? Is that a standard thing in AUR packages? |
I don't know. But |
I just checked the install scripts. At the moment there are three repo's for tiny. One of them is a binary. The others are compiled by the user -- as usual for aur packages. But just one of them, do the test. Which is done in the |
It might make sense to submit a request to change the PKGBUILD file to use check() {
cd "${srcdir}/tiny-${pkgver}"
-cargo test --no-default-features --features=tls-native,desktop-notifications --release
+cargo check --no-default-features --features=tls-native,desktop-notifications --release
} |
With this, the notifications won't pop up? |
Right, because the tests will not run. The code and dependencies will be checked for errors, but now I'm not sure if it's actually better to just run through |
Okey, i have linked this issue at the comment section for that AUR package. So at least it's "documented" ;-) |
My understanding is
So |
My mistake then! @netzego see above comment, you might want to redact your comment there, sorry 😞 |
@trevarj no problem. I've edit that comment.
Actually your test is fine. Also form the AUR perspective. Just the text should really adjusted. My two cents. Besides, i really enjoyed |
Today i installed this repo with archlinux. The aur packages compiles the code and run the tests. I didn't pay much attention, and later i found the 2 notifications created by the test
cargo test --no-default-features --features=tls-native,desktop-notifications --release
. It took me 5 min to realize what actually happend. So i could remove my tinfoil hat :). And thx for this repo.The text was updated successfully, but these errors were encountered: