Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor setup.py for proper Python Test Execution #124

Merged
merged 2 commits into from
Sep 16, 2024
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
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@

<br><br>

<!-- TODO(rsanchez15): Remove this before releasing v3.0.0 -->
> [!WARNING]
> **In preparation for Fast DDS v3.0.0, eProsima/dev-utils' master branch is undergoing major changes entailing API breaks.**
> **Until Fast DDS v3.0.0 is released, it is strongly advisable to use the latest stable branch, [0.x](https://github.com/eProsima/dev-utils/tree/0.x), which uses Fast DDS 2.14.x**.

The packages that conform this repository are:

* **CMake utils**: `cmake_utils` CMake utilities to build packages.
Expand Down
7 changes: 5 additions & 2 deletions py_utils/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
maintainer_email='[email protected]',
description=description,
license='Apache License, Version 2.0',
tests_require=['pytest'],
test_suite='test',
extras_require={
'test': [
'pytest', # Add your testing dependencies here
],
},
entry_points={},
)
Loading