From 9a26928dd1f3a7b7ad25f8a21cf79a29c4186fff Mon Sep 17 00:00:00 2001 From: Chris Dent Date: Sun, 11 Oct 2015 13:01:21 +0100 Subject: [PATCH] Make pep8 rules more clear in CONTRIBUTING.md --- CONTRIBUTING.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 52b6c72..6a463e0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -40,3 +40,10 @@ When you push your branch back to Github please never force push. If your pull request receives some comments and you need to make some changes, please do them as _an additional commit_ on the branch used for the pull request. + +Any code you submit should follow the rules of +[pep8](https://www.python.org/dev/peps/pep-0008/). You can test that +it does by running `tox -epep8` in your checkout. Note that when you +run that the code will also be evaluated to be sure it follows some +standards established in the OpenStack development community (mostly +to do with import handling and line breaks).