-
Notifications
You must be signed in to change notification settings - Fork 2
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
Task - "integrationTest" always assumes, it needs to start tomcat before and stop after tests #10
Comments
Hello. Do you set integration task to null in
What I see here, that there's a bug if you don't set |
Yes @saladinkzn. As mentioned in the the description, I tried setting the integrationTestTask as |
OK, I'll check it out today 2016-04-14 15:31 GMT+03:00 Mohan Kornipati notifications@github.com:
|
Thanks @saladinkzn and just to let you know, currently, as a workaround we are removing the
|
Well, I've tested gist and it's working as expected (server is not started when integrationTest task is called using Could you provide a minimal example when appBeforeIntegrationTest is called even when integrationTestTask is set to null? |
This is same as created @ akhikhl#244
I am referring to the "Gretty Configuration" and understood that the default value for
integrationTestTask
isintegrationTest
.We got few projects where we don't need the Tomcat needs to be running for integrationTest Task. and actually name of the integrationTest task is
integrationTest
. I am looking for Gretty Configurations to see, if I can say, I don't need Tomcat start and stop for my "integrationTest" task. Can you point me to right configuration if any.Here are few other observations.
I tried setting the
integrationTestTask
asnull
or''
, but I can still see the Tasks -appBeforeIntegrationTest
andappAfterIntegrationTest
getting executed.The reason seems to be because
appBeforeIntegrationTest.integrationTestTaskAssigned
,appAfterIntegrationTest.integrationTestTaskAssigned
is alwaystrue
and it is not updated to 'false' when I am updating value ofintegrationTestTask
to null or empty string?The text was updated successfully, but these errors were encountered: