-
Notifications
You must be signed in to change notification settings - Fork 68
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
What is the purpose of #include section in #testing? #58
Comments
Nevermind, apparently the second variant doesn't work (even though the array syntax would suggest otherwise.) |
The
I hope the above makes sense. |
If you have an idea how to improve the doc, please send a PR 😃 |
My point was different: if I have #packages : [ 'Foo.*' ] then Foo is tested as expected ( https://travis-ci.org/peteruhnak/ci-foo/builds/109091321 ) however if I have #packages : [ 'Foo.*', 'Bar.*' ] then only Foo is tested, and not Bar ( https://travis-ci.org/peteruhnak/ci-foo/builds/109091408 ) So I have to do #packages : [ 'Foo.*' ]
#include: {
#packages : [ 'Bar.*' ]
} to have them tested both ( https://travis-ci.org/peteruhnak/ci-foo/builds/109091536 ) So my question is: why does the second variant not work? My impression is that the first |
Just to confirm, are my observations about the default |
Sorry for leaving this unanswered for so long. #packages : [ 'Foo.*', 'Bar.*' ] only causes |
That was the case as you can see in the linked travis builds. I seem to have deleted the github repos, but it should be easy to setup again… |
That's my bad I guess. But yes, shouldn't be to hard :) I'll look into it in the next few days. |
@peteruhnak you were absolutely right, explicit |
What is the purpose of the
#include
section?Isn't it equal to having it directly in the array?
The text was updated successfully, but these errors were encountered: