-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #247 from reportportal/develop
Release
- Loading branch information
Showing
62 changed files
with
2,712 additions
and
2,504 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[flake8] | ||
ignore = E203, W503, E701 | ||
exclude = .git,venv,env | ||
max-line-length = 119 |
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,136 @@ | ||
# Contribution | ||
|
||
Contributions are highly welcomed and appreciated. | ||
|
||
## Contents | ||
|
||
- [Feature requests](#feature-requests) | ||
- [Bug reports](#bug-reports) | ||
- [Bug fixes](#bug-fixes) | ||
- [Implement features](#implement-features) | ||
- [Preparing Pull Requests](#preparing-pull-requests) | ||
|
||
## Feature requests | ||
|
||
We'd also like to hear about your thoughts and suggestions. Feel free to [submit them as issues](https://github.com/reportportal/client-Python/issues) and: | ||
|
||
* Explain in detail how they should work. | ||
* Keep the scope as narrow as possible. It will make it easier to implement. | ||
|
||
## Bug reports | ||
|
||
Report bugs for the client in the [issue tracker](https://github.com/reportportal/client-Python/issues). | ||
|
||
If you are reporting a new bug, please include: | ||
|
||
* Your operating system name and version. | ||
* Python interpreter version, installed libraries, and reportportal-client version. | ||
* Detailed steps to reproduce the bug. | ||
|
||
## Bug fixes | ||
|
||
Look through the [GitHub issues for bugs](https://github.com/reportportal/client-Python/labels/bug). | ||
|
||
If you are going to fix any of the existing bugs, assign that bug to yourself and specify preliminary milestones. Talk to [contributors](https://github.com/reportportal/client-Python/graphs/contributors) in case you need consultancy regarding implementation. | ||
|
||
## Implement features | ||
|
||
Look through the [GitHub issues for enhancements](https://github.com/reportportal/client-Python/labels/enhancement). | ||
|
||
Talk to [contributors](https://github.com/reportportal/client-Python/graphs/contributors) in case you need consultancy regarding implementation. | ||
|
||
## Preparing Pull Requests | ||
|
||
What is a "pull request"? It informs the project's core developers about the changes you want to review and merge. Pull requests are stored on [GitHub servers](https://github.com/reportportal/client-Python/pulls). Once you send a pull request, we can discuss its potential modifications and even add more commits to it later on. There's an excellent tutorial on how Pull Requests work in the [GitHub Help Center](https://help.github.com/articles/using-pull-requests/). | ||
|
||
Here is a simple overview below: | ||
|
||
1. Fork the [reportportal-client GitHub repository](https://github.com/reportportal/client-Python). | ||
|
||
2. Clone your fork locally using [git](https://git-scm.com/) and create a branch: | ||
|
||
```sh | ||
$ git clone [email protected]:YOUR_GITHUB_USERNAME/client-Python.git | ||
$ cd client-Python | ||
# now, create your own branch off the "master": | ||
$ git checkout -b your-bugfix-branch-name | ||
``` | ||
|
||
If you need some help with Git, follow this quick start guide: [https://git.wiki.kernel.org/index.php/QuickStart](https://git.wiki.kernel.org/index.php/QuickStart) | ||
|
||
3. Install [pre-commit](https://pre-commit.com) and its hook on the client-Python repo: | ||
|
||
**Note: pre-commit must be installed as admin, as it will not function otherwise**: | ||
|
||
```sh | ||
$ pip install --user pre-commit | ||
$ pre-commit install | ||
``` | ||
|
||
Afterwards `pre-commit` will run whenever you commit. | ||
|
||
[https://pre-commit.com/](https://pre-commit.com/) is a framework for managing and maintaining multi-language pre-commit hooks to ensure code-style and code formatting is consistent. | ||
|
||
4. Install tox | ||
|
||
Tox is used to run all the tests and will automatically setup virtualenvs to run the tests in. (will implicitly use [http://www.virtualenv.org/en/latest/](http://www.virtualenv.org/en/latest/)): | ||
|
||
```sh | ||
$ pip install tox | ||
``` | ||
|
||
5. Run all the tests | ||
|
||
You need to have Python 3.10 available in your system. Now running tests is as simple as issuing this command: | ||
|
||
```sh | ||
$ tox -e pep,py310 | ||
``` | ||
|
||
This command will run tests via the "tox" tool against Python 3.10 and also perform code style checks. | ||
|
||
6. You can now edit your local working copy and run the tests again as necessary. Please follow PEP-8 recommendations. | ||
|
||
You can pass different options to `tox`. For example, to run tests on Python 3.10 and pass options to pytest (e.g. enter pdb on failure) to pytest you can do: | ||
|
||
```sh | ||
$ tox -e py310 -- --pdb | ||
``` | ||
|
||
Or to only run tests in a particular test module on Python 3.10: | ||
|
||
```sh | ||
$ tox -e py310 -- tests/test_service.py | ||
``` | ||
|
||
When committing, `pre-commit` will re-format the files if necessary. | ||
|
||
7. If instead of using `tox` you prefer to run the tests directly, then we suggest to create a virtual environment and use an editable install with the `testing` extra: | ||
|
||
```sh | ||
$ python3 -m venv .venv | ||
$ source .venv/bin/activate # Linux | ||
$ .venv/Scripts/activate.bat # Windows | ||
$ pip install -e ".[testing]" | ||
``` | ||
|
||
Afterwards, you can edit the files and run pytest normally: | ||
|
||
```sh | ||
$ pytest tests/test_service.py | ||
``` | ||
|
||
8. Commit and push once your tests pass and you are happy with your change(s): | ||
|
||
```sh | ||
$ git commit -m "<commit message>" | ||
$ git push -u | ||
``` | ||
|
||
9. Finally, submit a pull request through the GitHub website using this data: | ||
|
||
head-fork: YOUR_GITHUB_USERNAME/client-Python | ||
compare: your-branch-name | ||
|
||
base-fork: reportportal/client-Python | ||
base: master |
This file was deleted.
Oops, something went wrong.
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.