You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is probably good practice overall. A specific problem right now is that you can't write nosetests and do imports like from pr2_pbd_interaction.msg import ArmState, because it will be unable to find the msg module while importing pr2_pbd_interaction and it's not aware of the catkin devel directory for some reason. This can be remedied if you only have imports like from pr2_pbd_msgs.msg import ArmState. You can still write normal unittests, but then you can't trigger them automatically with catkin run_tests.
The text was updated successfully, but these errors were encountered:
E.g., pr2_pbd_msgs
This is probably good practice overall. A specific problem right now is that you can't write nosetests and do imports like
from pr2_pbd_interaction.msg import ArmState
, because it will be unable to find themsg
module while importingpr2_pbd_interaction
and it's not aware of the catkindevel
directory for some reason. This can be remedied if you only have imports likefrom pr2_pbd_msgs.msg import ArmState
. You can still write normalunittest
s, but then you can't trigger them automatically withcatkin run_tests
.The text was updated successfully, but these errors were encountered: