-
Notifications
You must be signed in to change notification settings - Fork 188
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 #148 from /issues/146
Issues/146 - 0.3.1 release
- Loading branch information
Showing
24 changed files
with
636 additions
and
201 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,4 @@ | ||
Contributing to awslimitchecker | ||
=============================== | ||
|
||
See the [Development page of the documentation on ReadTheDocs](http://awslimitchecker.readthedocs.org/en/develop/development.html) for information on how to contribute to awslimitchecker. |
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,71 @@ | ||
Before opening an issue, please see the | ||
[Getting Help](http://awslimitchecker.readthedocs.org/en/latest/getting_help.html) | ||
page of the documentation. | ||
|
||
Please remove all of this template but the relevant section below, and fill in | ||
each item in that section. | ||
|
||
## Feature Request | ||
|
||
If your feature request is for support of a service or limit not currently | ||
supported by awslimitchecker, you can simply title the issue "add support for | ||
<name of service, or name of service and limit>" and add a simple description. | ||
|
||
For anything else, please fill in the following: | ||
|
||
### Feature Description | ||
|
||
Describe in detail the feature you would like to see implemented, especially | ||
how it would work from a user perspective and what benefits it adds. Your description | ||
should be detailed enough to be used to determine if code written for the feature | ||
adequately solves the problem. | ||
|
||
### Use Cases | ||
|
||
Describe one or more use cases for why this feature will be useful. | ||
|
||
### Testing Assistance | ||
|
||
Indicate whether or not you will be able to assist in testing pre-release | ||
code for the feature. | ||
|
||
## Bug Report | ||
|
||
When reporting a bug in awslimitchecker, please provide all of the following information, | ||
as well as any additional details that may be useful in reproducing or fixing | ||
the issue: | ||
|
||
### Version | ||
|
||
awslimitchecker version, as reported by ``awslimitchecker --version`` | ||
|
||
### Installation Method | ||
|
||
How was awslimitchecker installed (provide as much detail as possible, ideally | ||
the exact command used and whether it was installed in a virtualenv or not). | ||
|
||
### Supporting Software Versions | ||
|
||
The output of ``python --version`` and ``virtualenv --version`` in the environment | ||
that awslimitchecker is running in, as well as your operating system type and version. | ||
|
||
### Actual Output | ||
|
||
``` | ||
Paste here the output of awslimitchecker (including the command used to run it), | ||
run with the -vv (debug-level output) flag, that shows the issue. | ||
``` | ||
|
||
### Expected Output | ||
|
||
Describe the output that you expected (what's wrong). If possible, after your description, | ||
copy the actual output above and modify it to what was expected. | ||
|
||
### TrustedAdvisor | ||
|
||
If the bug/issue is related to TrustedAdvisor, which support contract your account has. | ||
|
||
### Testing Assistance | ||
|
||
Indicate whether or not you will be able to assist in testing pre-release | ||
code for the feature. |
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,23 @@ | ||
Before submitting pull requests, please see the | ||
[Development documentation](http://awslimitchecker.readthedocs.org/en/latest/development.html) | ||
and specifically the [Pull Request Guidelines](http://awslimitchecker.readthedocs.org/en/latest/development.html#pull-requests). | ||
|
||
# Pull Request Checklist | ||
|
||
- [ ] Code should conform to the [Development Guidelines](http://awslimitchecker.readthedocs.org/en/latest/development.html#guidelines): | ||
- [ ] pep8 compliant with some exceptions (see pytest.ini) | ||
- [ ] 100% test coverage with pytest (with valid tests). If you have difficulty | ||
writing tests for the code, feel free to ask for help or submit the PR without tests. | ||
- [ ] Complete, correctly-formatted documentation for all classes, functions and methods. | ||
- [ ] documentation has been rebuilt with ``tox -e docs`` | ||
- [ ] Connections to the AWS services should only be made by the class's | ||
``connect()`` and ``connect_resource()`` methods, inherited from | ||
[awslimitchecker.connectable.Connectable](http://awslimitchecker.readthedocs.org/en/latest/awslimitchecker.connectable.html) | ||
- [ ] All modules should have (and use) module-level loggers. | ||
- [ ] **Commit messages** should be meaningful, and reference the Issue number | ||
if you're working on a GitHub issue (i.e. "issue #x - <message>"). Please | ||
refrain from using the "fixes #x" notation unless you are *sure* that the | ||
the issue is fixed in that commit. | ||
- [ ] Git history is fully intact; please do not squash or rewrite history. | ||
- [ ] If you made changes to the ``versioncheck`` code, be sure to locally run the | ||
``-versioncheck`` tox tests. |
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
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.