-
-
Notifications
You must be signed in to change notification settings - Fork 36
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
nim CI doesn't actually test this package #80
Comments
Please give more information, I don't really understand the problem. Are you talking about this service which currently 502s? What is it? How is it relevant to NimYAML? Also, there is a test task, |
when nim CI runs, it tests select packages to avoid introducing regressions in nim pacakges when new commits are added to nim, including NimYAML pacakage, see https://github.com/nim-lang/Nim/blob/9eeb514dda08f1caadb0d8e01a8595d991530b52/testament/important_packages.nim#L95
the default action is this all seemed to work, giving false impression that NimYAML was being tested in nim CI, whereas in fact nim-lang/nimble#780 reveals this was not the case. The simplest fix is to add a
that doesn't help as you can see by running the default test command (being run in nim CI) see https://github.com/nim-lang/nimble#tests for what's supported (as other packages do):
that's not the only reason for testing in nim CI, the other important reason is to make sure new PR's in nim repo don't break nim ecosystem (including NimYAML, on which other nimble packages depend on), as explained in nim-lang/Nim#8638 |
Thanks for the explanation, fixed it. |
same issue as tulayang/asyncmysql#5
either a test task needs to be defined or a tests folder needs to exist
The text was updated successfully, but these errors were encountered: