Skip to content
Merged
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
2 changes: 1 addition & 1 deletion linux_docker_resources/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y build-essential
RUN if test ${UBUNTU_DISTRO} != xenial; then apt-get update && apt-get install --no-install-recommends -y python3-lark-parser; fi

# Install build and test dependencies of ROS 2 packages.
RUN apt-get update && apt-get install --no-install-recommends -y clang-format cppcheck git libxml2-utils pydocstyle pyflakes python3-coverage python3-flake8 python3-mock python3-nose python3-pep8 python3-pyparsing python3-yaml uncrustify
RUN apt-get update && apt-get install --no-install-recommends -y clang-format cppcheck git libxml2-dev libxml2-utils libxslt-dev pydocstyle pyflakes python3-coverage python3-flake8 python3-lxml python3-mock python3-nose python3-pep8 python3-pyparsing python3-yaml uncrustify

# Install and self update pip/setuptools to the latest version.
RUN apt-get update && apt-get install --no-install-recommends -y python3-pip
Expand Down
5 changes: 5 additions & 0 deletions ros2_batch_job/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@
'pyyaml',
'vcstool',
]
if sys.platform in ('darwin', 'win32'):
pip_dependencies += [
'lxml'
]

colcon_packages = [
'colcon-core',
'colcon-defaults',
Expand Down