From d6ca9b51507628edd738370754ad17548aea8ed7 Mon Sep 17 00:00:00 2001 From: Wiktor Bajor Date: Thu, 4 Jul 2024 21:31:27 +0200 Subject: [PATCH] Add human_detector pkg --- human_detector/human_detector/__init__.py | 0 .../human_detector/human_detector.py | 6 +++++ human_detector/package.xml | 18 +++++++++++++ human_detector/resource/human_detector | 0 human_detector/setup.cfg | 4 +++ human_detector/setup.py | 26 +++++++++++++++++++ human_detector/test/test_copyright.py | 25 ++++++++++++++++++ human_detector/test/test_flake8.py | 25 ++++++++++++++++++ human_detector/test/test_pep257.py | 23 ++++++++++++++++ 9 files changed, 127 insertions(+) create mode 100644 human_detector/human_detector/__init__.py create mode 100644 human_detector/human_detector/human_detector.py create mode 100644 human_detector/package.xml create mode 100644 human_detector/resource/human_detector create mode 100644 human_detector/setup.cfg create mode 100644 human_detector/setup.py create mode 100644 human_detector/test/test_copyright.py create mode 100644 human_detector/test/test_flake8.py create mode 100644 human_detector/test/test_pep257.py diff --git a/human_detector/human_detector/__init__.py b/human_detector/human_detector/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/human_detector/human_detector/human_detector.py b/human_detector/human_detector/human_detector.py new file mode 100644 index 0000000..11ff3d7 --- /dev/null +++ b/human_detector/human_detector/human_detector.py @@ -0,0 +1,6 @@ +def main(): + print('Hi from human_detector.') + + +if __name__ == '__main__': + main() diff --git a/human_detector/package.xml b/human_detector/package.xml new file mode 100644 index 0000000..73f1459 --- /dev/null +++ b/human_detector/package.xml @@ -0,0 +1,18 @@ + + + + human_detector + 0.0.0 + TODO: Package description + wiktor + TODO: License declaration + + ament_copyright + ament_flake8 + ament_pep257 + python3-pytest + + + ament_python + + diff --git a/human_detector/resource/human_detector b/human_detector/resource/human_detector new file mode 100644 index 0000000..e69de29 diff --git a/human_detector/setup.cfg b/human_detector/setup.cfg new file mode 100644 index 0000000..6e75b4c --- /dev/null +++ b/human_detector/setup.cfg @@ -0,0 +1,4 @@ +[develop] +script_dir=$base/lib/human_detector +[install] +install_scripts=$base/lib/human_detector diff --git a/human_detector/setup.py b/human_detector/setup.py new file mode 100644 index 0000000..845a794 --- /dev/null +++ b/human_detector/setup.py @@ -0,0 +1,26 @@ +from setuptools import find_packages, setup + +package_name = 'human_detector' + +setup( + name=package_name, + version='0.0.0', + packages=find_packages(exclude=['test']), + data_files=[ + ('share/ament_index/resource_index/packages', + ['resource/' + package_name]), + ('share/' + package_name, ['package.xml']), + ], + install_requires=['setuptools'], + zip_safe=True, + maintainer='wiktor', + maintainer_email='wiktorbajor1@gmail.com', + description='TODO: Package description', + license='TODO: License declaration', + tests_require=['pytest'], + entry_points={ + 'console_scripts': [ + 'human_detector = human_detector.human_detector:main' + ], + }, +) diff --git a/human_detector/test/test_copyright.py b/human_detector/test/test_copyright.py new file mode 100644 index 0000000..97a3919 --- /dev/null +++ b/human_detector/test/test_copyright.py @@ -0,0 +1,25 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_copyright.main import main +import pytest + + +# Remove the `skip` decorator once the source file(s) have a copyright header +@pytest.mark.skip(reason='No copyright header has been placed in the generated source file.') +@pytest.mark.copyright +@pytest.mark.linter +def test_copyright(): + rc = main(argv=['.', 'test']) + assert rc == 0, 'Found errors' diff --git a/human_detector/test/test_flake8.py b/human_detector/test/test_flake8.py new file mode 100644 index 0000000..27ee107 --- /dev/null +++ b/human_detector/test/test_flake8.py @@ -0,0 +1,25 @@ +# Copyright 2017 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_flake8.main import main_with_errors +import pytest + + +@pytest.mark.flake8 +@pytest.mark.linter +def test_flake8(): + rc, errors = main_with_errors(argv=[]) + assert rc == 0, \ + 'Found %d code style errors / warnings:\n' % len(errors) + \ + '\n'.join(errors) diff --git a/human_detector/test/test_pep257.py b/human_detector/test/test_pep257.py new file mode 100644 index 0000000..b234a38 --- /dev/null +++ b/human_detector/test/test_pep257.py @@ -0,0 +1,23 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_pep257.main import main +import pytest + + +@pytest.mark.linter +@pytest.mark.pep257 +def test_pep257(): + rc = main(argv=['.', 'test']) + assert rc == 0, 'Found code style errors / warnings'