Development process ------------------- * Go to `http://github.com/stefanv/scikits.image `_ and follow the instructions on making your own fork/branch. * Make changes to your branch, committing locally as you progress. * Push your changes back to github. * Ping stefan to request a merge into the main development branch. .. note:: Do *not* merge the main branch into yours. You may rebase, as long as you are `aware of its dangers `_ (also see `LWN article `_). All of this may be intimidating if you've never used git before, so we'd happily accept plain old unified diffs (``git diff`` or ``diff -u a.txt b.txt``) as well. Guidelines: ``````````` * All code should have tests (see "Test coverage" below for more details). * All code should be documented, to the same `standard `_ as NumPy and SciPy. * Follow the `Python PEPs `_ where possible. * All major changes should be `posted for review `_ to the `mailing list `_. Test coverage ````````````` Tests for a module should ideally cover all code in that module, i.e. statement coverage should be at 100%. To measure the test coverage, install ``_ and then run:: $ make coverage This will print a report with one line for each file in `scikits.image`, detailing the test coverage:: Name Stmts Exec Cover Missing ------------------------------------------------------------------------------ scikits/image/color/colorconv 77 77 100% scikits/image/filter/__init__ 1 1 100% ... Bugs ```` Please `report bugs on Github `_.