Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ include_directories(

## Mark executable scripts (Python etc.) for installation
## in contrast to setup.py, you can choose the destination
install(PROGRAMS
catkin_install_python(PROGRAMS
scripts/ros_pytest_runner
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
Expand Down
5 changes: 3 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<package format="2">
<package format="3">
<name>ros_pytest</name>
<version>0.1.2</version>
<description>The ros_pytest package</description>
Expand Down Expand Up @@ -50,7 +50,8 @@
<!-- <doc_depend>doxygen</doc_depend> -->
<buildtool_depend>catkin</buildtool_depend>
<depend>rospy</depend>
<depend>python-pytest</depend>
<depend condition="$ROS_PYTHON_VERSION == 2">python-pytest</depend>
<depend condition="$ROS_PYTHON_VERSION == 3">python3-pytest</depend>
<test_depend>rostest</test_depend>


Expand Down