-
Notifications
You must be signed in to change notification settings - Fork 17
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
Base Env test cases #188
Base Env test cases #188
Conversation
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.
Can we add a line in the install instruction telling users they might need libminizip1
on their local environments if the scene APIs are not working?
Just updated the readme to add this as a pre-install instruction! |
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.
Good to merge.
Description:
Adds new test cases for the
base_env
class's functions.Functions Tested:
InstanceObject()
,ClearScene()
, andLoadSceneAsync()
are tested bytest_save_and_load()
. I guess this also technically testsPreLoadAssetsAsync()
.SendObject()
andAddListenerObject()
are tested bytest_object_listener()
LoadURDF()
,LoadCloth()
,LoadMesh()
are tested bytest_load_objects()
. To get this to pass, I needed to have the GitHub Actions runsudo apt-get install libminizip1
; not sure why.