-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding update, set_default and dir support * Adding tests, fixing up readme * Python2.x compatibility * Support for ruamel.yaml (#8) * [ci skip] adding Authors and Contributing files. * [ci skip] Updating Authors * [ci skip] Updating Changes * Fixing tests when using ruamel.yaml instead of pyyaml * [ci skip] Update changes.rst * Fixing PEP8 issues
- Loading branch information
1 parent
a948c69
commit 52515ef
Showing
7 changed files
with
82 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Box is written and maintained by Chris Griffith [email protected]. | ||
|
||
A big thank you to everyone that has helped! From PRs to suggestions and bug | ||
reporting, all input is greatly appreciated! | ||
|
||
Code contributions: | ||
|
||
- Alexandre Decan (AlexandreDecan) | ||
|
||
Suggestions and bug reporting: | ||
|
||
- JiuLi Gao (gaojiuli) | ||
- Jürgen Hermann (jhermann) | ||
- /u/tilkau | ||
- /u/Jumpy89 | ||
- /u/can_dry | ||
- /u/spidyfan21 |
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,39 @@ | ||
Contributing to Box | ||
=================== | ||
|
||
Thank you for looking into supporting Box. Any constructive input | ||
is greatly appreciated! | ||
|
||
Questions and Ideas | ||
------------------- | ||
|
||
Even if you don't have code contributions, but just an idea, or a question about | ||
Box, please feel free to open an issue! | ||
|
||
Reporting Bugs | ||
-------------- | ||
|
||
- Please include sample code and traceback (or unexpected behavior) | ||
of the error you are experiencing. | ||
|
||
- Python version and Operating System. | ||
|
||
Pull Requests | ||
------------- | ||
|
||
- Follow PEP8 | ||
|
||
- New features should have | ||
- Reasoning for addition in pull request | ||
- Docstring with code block example and parameters | ||
- Tests with as much coverage as reasonable | ||
- Tests should go through both sad and happy paths | ||
|
||
- Bug fixes should include | ||
- Explain under which circumstances the bug occurs in the pull request | ||
- Tests for new happy and sad paths | ||
- Test proving error without new code | ||
|
||
- Update CHANGES.rst to include new feature or fix | ||
|
||
- Add yourself to AUTHORS.rst! |
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ deps= | |
rarfile | ||
scandir | ||
pytest-cov | ||
commands=py.test --cov=box test/ | ||
commands=py.test --cov=box test/ |