We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some events that we currently handle are not properly defined an thus we should fix them to make sure the code is clean:
For example:
def test_stop(self, user_count=None, environment: Environment =None) -> None: self.__register_event(self.node_id, 0, 'test_stopped')
If we look at the code from locust this event does not trigger neither user_count nor environment, so there params are basically useless:
test_stop: EventHook """ Fired on each node when a load test is stopped. """
Please only look at those that we currently support. To add new events it is better to separate into new issues.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some events that we currently handle are not properly defined an thus we should fix them to make sure the code is clean:
For example:
If we look at the code from locust this event does not trigger neither user_count nor environment, so there params are basically useless:
test_stop: EventHook
"""
Fired on each node when a load test is stopped.
"""
Please only look at those that we currently support. To add new events it is better to separate into new issues.
The text was updated successfully, but these errors were encountered: