-
-
Notifications
You must be signed in to change notification settings - Fork 314
Add CONTRIBUTION guide #205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8f248d1
first version of contrib-guide ExpDev07/coronavirus-tracker-api#169
gribok 373fdc7
fix refs in contrib-guide
gribok ebbd19f
add more refs to contrib guide
gribok 6daffde
Merge branch 'master' of https://github.com/ExpDev07/coronavirus-trac…
gribok b3ac508
Add formatting to styleguide
gribok d56cb32
Add test coverage measuring. See ExpDev07/coronavirus-tracker-api#207
gribok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,35 @@ | ||
| # Contribution to Coronavirus Tracker API | ||
|
|
||
| First off, thanks for taking the time to contribute! | ||
| Every commit supports the open source ecosystem in case of [COVID-19](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic). | ||
|
|
||
| ## Testing | ||
|
|
||
| We have a handful of unit tests to cover most of functions. | ||
| Please write new test cases for new code you create. | ||
|
|
||
| ## Submitting changes | ||
|
|
||
| * If you're unable to find an open issue, [open a new one](https://github.com/ExpDev07/coronavirus-tracker-api/issues/new). Be sure to include a **title and clear description**, as much relevant information as possible | ||
| * Open a new [GitHub Pull Request to coronavirus-tracker-api](https://github.com/ExpDev07/coronavirus-tracker-api/pulls) with a clear list of what you've done (read more about [pull requests](http://help.github.com/pull-requests/)). Include the relevant issue number if applicable. | ||
| * We will love you forever if you include unit tests. We can always use more test coverage | ||
|
|
||
| ## Your First Code Contribution | ||
|
|
||
| Unsure where to begin contributing to coronavirus-tracker-api ? You can start by looking through these issues labels: | ||
|
|
||
| * [Enhancement issues](https://github.com/ExpDev07/coronavirus-tracker-api/labels/enhancement) - issues for new feature or request | ||
| * [Help wanted issues](https://github.com/ExpDev07/coronavirus-tracker-api/labels/help%20wanted) - extra attention is needed | ||
| * [Documentation issues](https://github.com/ExpDev07/coronavirus-tracker-api/labels/documentation) - improvements or additions to documentation | ||
|
|
||
| ## Styleguide | ||
|
|
||
| Please follow [PEP8](https://www.python.org/dev/peps/pep-0008/) guide. | ||
| See [Running Test](./README.md#running-tests) and [Linting](./README.md#linting) for further instructions. | ||
|
|
||
|
|
||
| We encourage you to pitch in and join the [Coronavirus Tracker API Team](https://github.com/ExpDev07/coronavirus-tracker-api#contributors-)! | ||
|
|
||
| Thanks! :heart: :heart: :heart: | ||
|
|
||
| [Coronavirus Tracker API Team](https://github.com/ExpDev07/coronavirus-tracker-api#contributors-) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we add a step here about running the formatter?
pipenv run fmtormake fmtorblack . -l 120There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for feedback. Added
make ftmto styleguide section.