-
Notifications
You must be signed in to change notification settings - Fork 97
Part of #3964: Refactor benchmark handling of running mode #4358
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
Merged
ajpotts
merged 1 commit into
Bears-R-Us:master
from
ajpotts:3964_Refactor_benchmark_handling_of_running_mode
May 3, 2025
Merged
Part of #3964: Refactor benchmark handling of running mode #4358
ajpotts
merged 1 commit into
Bears-R-Us:master
from
ajpotts:3964_Refactor_benchmark_handling_of_running_mode
May 3, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vasslitvinov
approved these changes
Apr 30, 2025
Contributor
vasslitvinov
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a good step forward, however it addresses only part of #3964. I suggest to keep 3964 open.
0a2c6ab to
6d3aa4d
Compare
6d3aa4d to
0f743c7
Compare
vasslitvinov
reviewed
May 1, 2025
vasslitvinov
reviewed
May 1, 2025
vasslitvinov
reviewed
May 1, 2025
vasslitvinov
approved these changes
May 1, 2025
9797880 to
f9dea9c
Compare
vasslitvinov
reviewed
May 2, 2025
1RyanK
approved these changes
May 2, 2025
f9dea9c to
149d713
Compare
jaketrookman
approved these changes
May 2, 2025
Contributor
jaketrookman
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR address some issues brought up in #3964 regarding the handling of running mode in the benchmarks. Some improvements:
pytest_adoptionthat cover the environment variables set inbenchmark.ini. This clarifies that directly specified arguments take precedent, followed by the value of the corresponding environment variable, and the default value is used as last resort.server=pytest.hostis used instart_arkouda_server(host=pytest.host, numlocales=nl, port=pytest.port)andak.connect(server=pytest.host, port=pytest.port, timeout=pytest.timeout)to ensure the tests connect to the same server that was started during the tests.Part of #3964: Refactor benchmark handling of running mode