-
Notifications
You must be signed in to change notification settings - Fork 51
Add pytest in automatic parking package #73
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ | |
|
|
||
| setup( | ||
| name=package_name, | ||
| version='1.3.1', | ||
| version='1.3.2', | ||
| packages=find_packages(), | ||
| data_files=[ | ||
| ('share/ament_index/resource_index/packages', ['resource/' + package_name]), | ||
|
|
@@ -24,8 +24,8 @@ | |
| zip_safe=True, | ||
| author=['Gilbert'], | ||
| author_email=['kkjong@robotis.com'], | ||
| maintainer='Will Son', | ||
| maintainer_email='willson@robotis.com', | ||
| maintainer='Pyo', | ||
| maintainer_email='pyo@robotis.com', | ||
| keywords=['ROS', 'ROS2', 'examples', 'rclpy'], | ||
| classifiers=[ | ||
| 'Intended Audience :: Developers', | ||
|
|
@@ -34,9 +34,10 @@ | |
| 'Topic :: Software Development', | ||
| ], | ||
| description=( | ||
| 'Examples of Different TurtleBot3 Usage.' | ||
| 'Package for turtlebot3 automatic_parking.' | ||
| ), | ||
| license='Apache License, Version 2.0', | ||
| tests_require=['pytest'], | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adding However, for ROS 2 packages, it's crucial to also declare test dependencies in Please consider adding the following to your <test_depend>pytest</test_depend>Reasoning: |
||
| entry_points={ | ||
| 'console_scripts': [ | ||
| 'turtlebot3_automatic_parking = \ | ||
|
|
||
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.
Consider using extras_require (e.g., extras_require={'test': ['pytest']}) instead of tests_require to align with current best practices for dependency management.