-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor project to be a normal ROS package (#33)
* Move to more typical ROS package structure to allow for inclusion in the build process of other packages * Do not expect a test to fail any more, since ROS was fixed by now * Update CI to new versions and adapt it to the new layout * Fix CI * Debug CI * More CI debugging * Fix Sphinx configuration * Revert debugging attempts * Cleanup and attempt using CI tools * debug * Try without ros-tooling/setup-ros * Fix installation of packages * Install dev tools * Run `rosdep init` * Update dependency installation * Fix dependency installation * Switch from black to ruff * Try to fix target-ros2-distro argument passing * Parameterize test * Ignore CI artifacts in formatting/linting * Try to repair ruff excludes * Actually install dependencies * Fix some paths * Debug again * Cleanup * Link to contributors * Apply formatting * Fix tests cases broken after merge * Slightly better signal handling in with_launch_file * Remove foxy leftovers * Cleanup
- Loading branch information
Showing
49 changed files
with
242 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ build: | |
python: | ||
install: | ||
- method: pip | ||
path: . | ||
path: ros2_easy_test | ||
extra_requirements: | ||
- doc | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>ros2_easy_test</name> | ||
<version>0.3.0</version> | ||
<description>A Python test framework for ROS2 allowing simple and expressive assertions based on message interactions.</description> | ||
<maintainer email="felix.divo@sailingteam.tu-darmstadt.de">Felix Divo</maintainer> | ||
<license>MIT</license> | ||
|
||
<test_depend>python3-pytest</test_depend> | ||
<test_depend>example_interfaces</test_depend> | ||
|
||
<export> | ||
<build_type>ament_python</build_type> | ||
</export> | ||
</package> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.