Use tracepoint names from tracetools_trace and add tests (#25)

Signed-off-by: Christophe Bedard <christophe.bedard@apex.ai>
This commit is contained in:
Christophe Bedard 2024-06-14 18:02:12 -04:00 committed by GitHub
parent 943bf2011a
commit 6d3a0f58bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 384 additions and 26 deletions

View file

@ -0,0 +1,26 @@
from setuptools import find_packages
from setuptools import setup
package_name = 'test_ros2trace_analysis'
setup(
name=package_name,
version='3.0.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/' + package_name, ['package.xml']),
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='Christophe Bedard',
maintainer_email='bedard.christophe@gmail.com',
author='Christophe Bedard',
author_email='bedard.christophe@gmail.com',
url='https://github.com/ros-tracing/tracetools_analysis',
keywords=[],
description='Tests for the ros2trace_analysis package.',
license='Apache 2.0',
tests_require=['pytest'],
)