-
Notifications
You must be signed in to change notification settings - Fork 22
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
Improve how RunConfiguration is set in the meta test #175
Comments
Hello! I would like to work on this issue with Tomasz Puczel (@puctom) |
Great! @puctom, post something here so I can assign you too! |
i would like to work on this too :) |
I can't remember precisely what I meant with the description of this ticket, I'll try to dive a bit more. But if you debug the execution of a meta test, you'll see the exception when it comes to finding the Configuration. |
Hello! |
IIRC, what I meant was that, when we are running a meta test, and then its execution gets to the If it does get executed, I would like to avoid that. It makes no sense to use a try/catch to handle a flow that we expect to happen. Somehow and somewhere we need to do "if this is a meta test, then, new DefaultRunConfiguration`. (There might be a chance that this line isn't executed anymore, as we have made many changes since I opened up this ticket! If so, we close it!) Let me know if that clarifies the issue! |
Currently no
RunConfiguration
is set in the meta test. Each meta test then tries to find one, an exception happens, and we inject a default one.First of all, there's no need for a default run configuration. If there's none, we should not even start. Second, we can skip this step then, when running meta tests.
The text was updated successfully, but these errors were encountered: