Use tracepoint names from tracetools_trace and add tests (#25)
Signed-off-by: Christophe Bedard <christophe.bedard@apex.ai>
This commit is contained in:
parent
943bf2011a
commit
6d3a0f58bd
15 changed files with 384 additions and 26 deletions
26
test_ros2trace_analysis/setup.py
Normal file
26
test_ros2trace_analysis/setup.py
Normal 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'],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue