forked from ros-infrastructure/rosdep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Declare test dependencies in [test] extra (ros-infrastructure#881)
Also make the 'mock' dependency conditional, now that this package supports using unittest.mock.
- Loading branch information
Showing
2 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,14 @@ | |
'packages': ['rosdep2', 'rosdep2.ament_packages', 'rosdep2.platforms'], | ||
'package_dir': {'': 'src'}, | ||
'install_requires': ['catkin_pkg >= 0.4.0', 'rospkg >= 1.4.0', 'rosdistro >= 0.7.5', 'PyYAML >= 3.1', 'setuptools'], | ||
'test_requires': ['mock', 'pytest'], | ||
'extras_require': { | ||
'test': [ | ||
'flake8', | ||
'flake8-comprehensions', | ||
"mock; python_version < '3.3'", | ||
'pytest', | ||
], | ||
}, | ||
'author': 'Tully Foote, Ken Conley', | ||
'author_email': '[email protected]', | ||
'maintainer': 'ROS Infrastructure Team', | ||
|