From 5abe327e5d69b61a9c1092217d1c04e5f2b2d6b5 Mon Sep 17 00:00:00 2001 From: Ferry van Zeelst Date: Mon, 31 Oct 2016 19:47:48 +0100 Subject: [PATCH] Added pydocstyle test Added the pydocstyle test to the bash syntax mainly because this is the one I always forget (and get a few messages from my new friend balloobbot) --- source/developers/development_testing.markdown | 1 + 1 file changed, 1 insertion(+) diff --git a/source/developers/development_testing.markdown b/source/developers/development_testing.markdown index 71a636977b0..2a777ea16e1 100644 --- a/source/developers/development_testing.markdown +++ b/source/developers/development_testing.markdown @@ -38,6 +38,7 @@ During development on a specific file, speed up your workflow by running tests a ```bash $ flake8 homeassistant/core.py $ pylint homeassistant/core.py +$ pydocstyle homeassistant/core.py $ py.test tests/test_core.py ```