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
License::Software #452
Comments
|
This is the same kind of error that wasn't really an error in other I worked with. I'll check anyway. |
|
Fails because #502 |
|
I have noticed this issue. As far as i understand my module is not broken, it's the testing? |
|
Testing locally I see a different failure: Which is consistent however it is run. The weird bit is that when run one on its own I get an additional error: But I can't find where that is coming from. Having instrumented Incidently the diff --git a/lib/License/Software.pm6 b/lib/License/Software.pm6
index c6b2ab4..1dd9e46 100644
--- a/lib/License/Software.pm6
+++ b/lib/License/Software.pm6
@@ -170,12 +170,14 @@ sub license(Str:D $alias) is export returns License::Software::Abstract
{
for get-all() -> $license { return $license if $alias.uc ∈ $license.aliases».uc }
warn "Can not find license alias '$alias'";
+ License::Software::Abstract;
}
sub license-from-url(Str:D $url ) is export returns License::Software::Abstract
{
for get-all() -> $license { return $license if $url ~~ $license.url }
warn "Can not find license with url '$url'";
+ License::Software::Abstract;
}
=COPYRIGHT Copyright © 2016 Bahtiar `kalkin-` Gadimov <bahtiar@gadimov.de>
Would fix. |
|
@jonathanstowe Can't reproduce locally. How exactly did you run tests? EDIT: Also passes |
Module License::Software cannot be installed (
AlwaysFail), perhaps it has some failing tests.works for melabel, leave a comment saying that it works for you and mention any details that you feel are important.native dependencylabel, describe what you did to install it and ensure that same instructions are present in the README file of the module (otherwise submit a pull request). Also try to update this wiki page.PR sentlabel.failing dependencylabel and write a comment explaining the situation. Feel free to work on the corresponding ticket for the failing dependency.If you can't self-assign yourself or attach a label, please let us know on #perl6 channel on freenode or just leave a comment here. We will try to give you privileges as fast as possible.
Output:
Ping @kalkin
The text was updated successfully, but these errors were encountered: