-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add tests for tcp sender * Add linter and pre-commit hooks * Reformat with python black * Add tests * Add tests for server, client, publisher, subscriber, ros_service, unity_service, thread_pauser * Fix pre-commit-config file name; Add client tests * Add github workflow check * Formatting
- Loading branch information
1 parent
92fab0e
commit 6db5d23
Showing
10 changed files
with
150 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Contribution Guidelines | ||
|
||
Thank you for your interest in contributing to Unity Robotics! To facilitate your | ||
contributions, we've outlined a brief set of guidelines to ensure that your extensions | ||
Thank you for your interest in contributing to Unity Robotics! To facilitate your | ||
contributions, we've outlined a brief set of guidelines to ensure that your extensions | ||
can be easily integrated. | ||
|
||
## Communication | ||
|
@@ -40,10 +40,10 @@ We run continuous integration on all PRs; all tests must be passing before the P | |
|
||
All Python code should follow the [PEP 8 style guidelines](https://pep8.org/). | ||
|
||
All C# code should follow the [Microsoft C# Coding Conventions](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/inside-a-program/coding-conventions). | ||
Additionally, the [Unity Coding package](https://docs.unity3d.com/Packages/[email protected]/manual/index.html) | ||
can be used to format, encode, and lint your code according to the standard Unity | ||
development conventions. Be aware that these Unity conventions will supersede the | ||
All C# code should follow the [Microsoft C# Coding Conventions](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/inside-a-program/coding-conventions). | ||
Additionally, the [Unity Coding package](https://docs.unity3d.com/Packages/[email protected]/manual/index.html) | ||
can be used to format, encode, and lint your code according to the standard Unity | ||
development conventions. Be aware that these Unity conventions will supersede the | ||
Microsoft C# Coding Conventions where applicable. | ||
|
||
Please note that even if the code you are changing does not adhere to these guidelines, | ||
|
@@ -60,5 +60,5 @@ email us at [[email protected]](mailto:[email protected]). | |
|
||
## Contribution review | ||
|
||
Once you have a change ready following the above ground rules, simply make a | ||
Once you have a change ready following the above ground rules, simply make a | ||
pull request in GitHub. |
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,16 +10,16 @@ Instructions and examples on how to use this ROS package can be found on the [Un | |
|
||
## Community and Feedback | ||
|
||
The Unity Robotics projects are open-source and we encourage and welcome contributions. | ||
If you wish to contribute, be sure to review our [contribution guidelines](CONTRIBUTING.md) | ||
The Unity Robotics projects are open-source and we encourage and welcome contributions. | ||
If you wish to contribute, be sure to review our [contribution guidelines](CONTRIBUTING.md) | ||
and [code of conduct](CODE_OF_CONDUCT.md). | ||
|
||
## Support | ||
For questions or discussions about Unity Robotics package installations or how to best set up and integrate your robotics projects, please create a new thread on the [Unity Robotics forum](https://forum.unity.com/forums/robotics.623/) and make sure to include as much detail as possible. | ||
|
||
For feature requests, bugs, or other issues, please file a [GitHub issue](https://github.com/Unity-Technologies/ROS-TCP-Endpoint/issues) using the provided templates and the Robotics team will investigate as soon as possible. | ||
|
||
For any other questions or feedback, connect directly with the | ||
For any other questions or feedback, connect directly with the | ||
Robotics team at [[email protected]](mailto:[email protected]). | ||
|
||
## License | ||
|
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
ROS_IP: 127.0.0.1 | ||
ROS_IP: 0.0.0.0 | ||
ROS_TCP_PORT: 10000 | ||
|
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
Oops, something went wrong.