-
Notifications
You must be signed in to change notification settings - Fork 0
Patch/pytest #110
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
Merged
Patch/pytest #110
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
b66accc
fix pytest error swallowing
energy-in-joles 8ca2bee
add exp_ball field
energy-in-joles cd0b4aa
teleport ball off the field for grsim
energy-in-joles 5586764
add test cases for test_exp_ball.py
energy-in-joles 5de0585
add check to prevent rsim infinite loop when invalid frame.
energy-in-joles 5da7b38
ensure ball is not incorrectly imputed when exp_ball false
energy-in-joles bc24587
add more test with kalman filtering enabled
energy-in-joles 61ed923
Update utama_core/run/strategy_runner.py
energy-in-joles 3111530
standardised teleport sim controller api for grsim and rsim
energy-in-joles 351d1c9
do exp_ball check on opp strat too
energy-in-joles 4672ecf
Update utama_core/data_processing/refiners/position.py
energy-in-joles c0d148c
some docstring improvements
energy-in-joles dc97096
relax exp_ball requirement
energy-in-joles 77cac8b
update tests that don't need balls to not have balls and some fixes
energy-in-joles f0f02c2
update test docstring
energy-in-joles 6fca5ce
move motion planning strats out of tests
energy-in-joles 9a85155
updates
energy-in-joles e2eea24
update random test to be harder
energy-in-joles af07a50
fix according to Fred's comments
energy-in-joles d712aad
chore: cleanup
energy-in-joles 7dfbf43
add sim controller tests
energy-in-joles 5d0684e
fix remove_ball logic
energy-in-joles e6a6683
remove unncessary test case
energy-in-joles 9959991
add __init__.py
energy-in-joles 108a7d3
change remove_ball to be fixed offset
energy-in-joles cf29e2b
chore: clean up exp_ball conditionals in position refiner and sim con…
fred-huang122 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Suggestion: The
pass+elsepattern is a bit hard to parse at a glance. Consider inverting the condition:This removes the empty
passbranch and makes the intent clearer: "run the filter logic unless there's no ball and we don't expect one."