File: CONTRIBUTING.md

package info (click to toggle)
stravalib 2.4-2
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 5,340 kB
  • sloc: python: 4,462; makefile: 5
file content (154 lines) | stat: -rw-r--r-- 7,946 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# How to Contribute to Stravalib

**Thank you for considering contributing to stravalib!**
This is a community-driven project. It's people like you that make it useful and
successful. We welcome contributions of all kinds. Below are some of the
ways that you can contribute to `stravalib`:

- Submit bug reports and feature requests
- Write tutorials or examples
- Fix typos and improve the documentation
- Submit code fixes

[Please read our development guide](https://stravalib.readthedocs.io/en/latest/contributing/development-guide.html)
if you are interested in submitting a pull request to suggest changes to
our code or documentation.

## Contribution ground rules

The `stravalib` maintainers work on `stravalib` in their free time because
they love the package's contribution to the Python ecosystem. As such we
value contributions and respectful interactions with `stravalib` users.

**Please be considerate and respectful of others** in all of your communications
in this repository.
Everyone must abide by our [Code of Conduct](https://github.com/stravalib/stravalib/blob/main/CODE_OF_CONDUCT.md).
Please read it carefully. Our goal is to maintain a diverse community of
`stravalib` users and contributors that's pleasant for everyone.

## How to start contributing to stravalib

If you are thinking about submitting a change to stravalib documentation or
code, please start by [submitting an issue in our GitHub repository](https://github.com/stravalib/stravalib/issues/).
We will use that issue to communicate with you about:

1. Whether the change is in scope for the project
2. Any obstacles that you need help with or clarification on.

### Want to submit a pull request with changes to our code or documentation?

We welcome changes to stravalib through pull requests. Before you submit a
pull request please be sure to:

1. Read this document fully
2. Submit an issue about the change as discussed below and
3. [Read our development guide](https://stravalib.readthedocs.io/en/latest/contributing/development-guide.html)

### How to report a bug in stravalib or typo in our documentation

Found a bug? Or a typo in our documentation? We want to know about it!
To report a bug or a documentation issue, please submit an issue on GitHub.

If you submit a bug report, **please add as much
detail as you can about the bug**. Remember: the more information we have, the easier it
will be for us to solve your problem.

### Documentation fixes

If you're browsing the documentation and notice a typo or something that could be
improved, please let us know by creating an issue. We also welcome you to
submit a documentation fix directly using a pull request to our
repository.

## An overview of our stravalib git / GitHub workflow

We follow the [git pull request workflow](https://www.asmeurer.com/git-workflow/) to
make changes to our codebase.
Every change made goes through a pull request, even our own so that our
[continuous integration](https://en.wikipedia.org/wiki/Continuous_integration) services
can check that the code is up to standards and passes all of our tests.

This workflow ensures that  our _main_ branch us always stable.

### General guidelines for pull requests (PRs):

- **Open an issue first** describing what you want to do. If an issue already matches your PR, leave a comment there instead to let us know what you plan to do. Be as specific as you can in the issue.
- Each pull request should contain a **small** and logical collection of changes directly related to your opened issue.
- Larger changes should be broken down into smaller components and integrated
  separately.
- Bug fixes should be submitted in separate PRs.
- Describe what your pull request changes and _why_ this is a good thing (or refer to the issue you opened if it contains that information). Be as specific as you can.
- Do not commit changes to files irrelevant to your feature or bugfix (eg: `.gitignore`, IDE project files, etc).
- Write descriptive commit messages that describe what your change is.
- Be willing to accept feedback and to work on your code through a pull request. We don't want to break other users' code, so care must be taken not to introduce bugs.
- Be aware that the pull request review process is not immediate. The time that it takes to review a pull request is generally proportional to the size of the pull request. Larger pull requests may take longer to review and merge.

### Testing your code

Automated testing ensures that our code is as free of bugs as possible.
It also lets us know immediately if a change breaks any other part
of the code.

All of our test code and data are stored in the `tests` directory within the
`stravalib` package directory.
We use the [pytest](https://docs.pytest.org/en/latest/) framework to run the
test suite.

If you submit a code fix or enhancement and know how to write tests,
please include tests for your code in your pr. This helps us ensure that your
change doesn't break any of the existing functionality.

Tests also help us be confident that we won't break your code in the future.

If you're **new to testing**, please review existing test files for examples
of how to create tests.

**Don't let the tests keep you from submitting your contribution!**
If you're unsure how to do this or are having trouble, submit your pull
request anyway. We will help you create the tests and sort out any problems during the code review.

You can learn more about [how to run our test suite in the development guide, here](https://stravalib.readthedocs.io/en/latest/contributing/development-guide.html#about-the-stravalib-test-suite).

### Test coverage

We use `codecov`, implemented through the `pytest-cov` extension to sphinx to
track `stravalib`'s test % coverage. When you submit a pull request, you will
see how that pull request affects our package's total test coverage.

### Documentation

Our documentation is in the `doc` folder.
We use [sphinx](https://www.sphinx-doc.org/) to build the web pages from
these sources. You can learn more about [building and contributing to our
documentation here.](https://stravalib.readthedocs.io/en/latest/contributing/development-guide.html#documentation)

### Code Review and issue response timeline

After you've submitted a pull request or an issue, you should expect to see a response from a maintainer within a week or so, depending on how busy the maintainers are at that time.
If you submit a pull request, we may suggest some changes, improvements, or alternative approaches.

Some things that will increase the chance that your pull request is accepted quickly:

- Write a good and detailed description of what the pull request does.
- Write tests for the code you wrote/modified.
- Readable code is better than clever code (even with comments).
- Write documentation for your code (docstrings) and leave comments explaining the
  _reason_ behind non-obvious things.
- Include an example of new features in the gallery or tutorials.
- Follow the [numpy style guide](https://numpydoc.readthedocs.io/en/latest/format.html)
  for documentation and docstrings.
- Run the automatic code formatter and style checks.

All pull requests are automatically tested using workflows in GitHub Actions. Our GitHub actions:

- run the test suite
- test the documentation build (which includes API documentation created from docstrings)
- run [code format and syntax tests for code formatters](https://stravalib.readthedocs.io/en/latest/contributing/development-guide.html#code-format-and-syntax)

When you submit a pull request, you will see whether the tests ran or failed.
You will also see the resulting % code coverage based on your pull request.

Please try to ensure that all tests pass (Green checks) in your pull request
before requesting a review from maintainers. If you have any trouble with the
GitHub action tests, please leave a comment in the Pull Request or open an Issue.
We will do our best to help you.