Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
topydo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
topydo
Commits
5465cd2c
Commit
5465cd2c
authored
Jun 13, 2015
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add section on 'coverage', restructured document a bit.
parent
a9576e22
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
9 deletions
+29
-9
CONTRIBUTING.md
CONTRIBUTING.md
+29
-9
No files found.
CONTRIBUTING.md
View file @
5465cd2c
If you're reading this, you may have interest in enhancing topydo. Thank you!
Please read the following guidelines to get your enhancement / bug fixes
smoothly into topydo:
smoothly into topydo.
### General
*
This Github page defaults to the
**stable**
branch which is for
**
bug fixes
only
**
. If you would like to add a new feature, make sure to make a Pull
Request on the
`master`
branch.
*
Use descriptive commit messages.
### Coding style
*
Please try to adhere to the coding style dictated by
`pylint`
as much
possible. I won't be very picky about long lines, but please try to avoid
them.
*
I strongly prefer simple and short functions, doing only one thing. I'll
request you to refactor functions with massive indentation or don't fit
otherwise on a screen.
### Testing
*
Run tests with:
./run-tests.sh [python2|python3]
...
...
@@ -21,13 +37,17 @@ smoothly into topydo:
ever again.
*
Features: add testcases that checks various inputs and outputs of your
feature. Be creative in trying to break the feature you've just implemented.
*
Use descriptive commit messages.
*
Check the test coverage of your contributed code, in particular if you
touched code in the topydo.lib or topydo.command packages:
### Coding style
pip install coverage
coverage run setup.py test
coverage report
Or alternatively, for a more friendly output, run:
coverage html
Which will generate annotated files in the
*htmlcov*
folder. The new code
should be marked green (i.e. covered).
*
Please try to adhere to the coding style dictated by
`pylint`
as much
possible. I won't be very picky about long lines, but please try to avoid
them.
*
I strongly prefer simple and short functions, doing only one thing. I'll
request you to refactor functions with massive indentation or don't fit
otherwise on a screen.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment