Skip to content

Commit

Permalink
Refactor setup.py for proper Python Test Execution (#124)
Browse files Browse the repository at this point in the history
* Update setup.py to include test dependencies in extras_require

Signed-off-by: Irene Bandera <[email protected]>

* Remove deprecated warning message for Fast DDS v3.0.0 release

Signed-off-by: Irene Bandera <[email protected]>

---------

Signed-off-by: Irene Bandera <[email protected]>
  • Loading branch information
irenebm committed Sep 16, 2024
1 parent 7e6c631 commit 3b4da7e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
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={},
)

0 comments on commit 3b4da7e

Please sign in to comment.