Contributing
First off, thank you for considering contributing to AltTester Unity SDK.
Did you find a bug?
Ensure the bug was not already reported by searching all issues. If you’re unable to find an open issue addressing the problem, open a new issue.
When you ask a question about a problem you will get a much better/quicker answer if you provide a code sample that can be used to reproduce the problem.
Try to:
Use as little code as possible that still produces the same problem.
Provide all parts needed to reproduce the problem (code and model if needed).
Test the code you’re about to provide to make sure it reproduces the problem.
How to suggest a feature or enhancement?
If you find yourself wishing for a feature that doesn’t exist in AltTester Unity SDK:
Ensure the enhancement was not already reported by searching all issues.
Open a new issue. Be sure to include a clear description of the feature you would like to see, as much relevant information as possible:
Why you need it?
How should it work?
Contributing changes
When you create a pull request take in consideration the following:
Respect the project structure
If it is a new feature like a new command try to make it for all three languages (Java, C# and Python) and also add tests
If it is a bugfix then write a test to show that the bug is no longer reproducible
Preparing your Fork
Click ‘Fork’ on GitHub, creating e.g.
yourname/AltTester-Unity-SDK
.Clone your forked repository:
git clone git@github.com:yourname/AltTester-Unity-SDK
.cd AltTester-Unity-SDK
For a more detailed tutorial check out the GitHub Documentation
Preparing a pull Request
After forking a project and applying your local changes, complete the following steps to create a pull request from your fork to contribute back to the main project:
In GitHub go to Your Repositories and open your forked repository.
Click on Contribute and then Open a pull request.
In the Compare: drop-down list box, select your branch in your forked repository (head repository) as the source branch.
In the Base: drop-down list box, select the
development
branch from theAltTester-Unity-SDK
repository (base repository) as the target branch.Click Create pull request and assign a user to review your changes.
For a more detailed tutorial check out the GitHub Documentation.