-
Notifications
You must be signed in to change notification settings - Fork 122
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
Add test for inserting the keyword INCLUDE from a PyAction in a paral… #5881
base: master
Are you sure you want to change the base?
Conversation
…lel run with 4 processes
jenkins build this please |
is there really any parallel aspect to this ? it seems to me that it would be doing exactly the same on all processes which means adding 20+ secs to the test suite for no good reason. |
Yes, you’re right, the test is to make sure that the functionality to add the kw "INCLUDE" in a parallel run is covered by at least one test. I understand the concern about the added time, yet I'd actually prefer to keep this test, if we want to reduce the test suite duration, I’d rather consider removing the sequential test instead. |
Just a tangential remark here since I haven't been following the development at all. The "regular" action handling (i.e., for the |
FYI the test for INCLUDE in ACTIONX is from 2021 and our notes mark it as supported since at least 2 years... |
Only by accident–we run essentially a full parse of the action block–and only because we've only ever seen very restricted use if any at all. If we allow
with
That's going to really confuse the rest of the run if it expects to use |
Sorry for the late reply - yes you're right! Should we remove it from the supported keywords? Or at least display a warning that the user must be cautious? |
Do you mean in the manual? If so, then yes I think we should at least add a warning there and a note that this is subject to change in the future. Due to the way we're currently parsing |
…lel run with 4 processes