Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actions/project_dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ runs:
with:
cmake_build_type: ${{ inputs.cmake_build_type }}

- name: Install jsonschema
uses: eProsima/eProsima-CI/multiplatform/install_python_packages@v0
with:
packages: jsonschema

- name: Install yaml cpp dependency
uses: eProsima/eProsima-CI/multiplatform/install_yamlcpp@v0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ on:
type: string

env:
code_packages_names: 'ddsrouter_core ddsrouter_yaml ddsrouter_tool'
code_packages_names: 'ddsrouter_core ddsrouter_yaml ddsrouter_tool ddsrouter_yaml_validator'
docs_packages_names: 'ddsrouter_docs'

jobs:
Expand Down
7 changes: 5 additions & 2 deletions tools/ddsrouter_yaml_validator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
maintainer_email='[email protected]',
description='Tool used for validating DDS-Router configuration files',
license='Apache License, Version 2.0',
tests_require=['pytest'],
test_suite='tests',
extras_require={
'test': [
'pytest', # Add your testing dependencies here
],
},
entry_points={
'console_scripts': [
'ddsrouter_yaml_validator = ddsrouter_yaml_validator.ddsrouter_yaml_validator:main',
Expand Down