From acd6617ae94d16ca77428f2122083d86a9ed055d Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Sun, 14 Feb 2016 18:16:44 +0000 Subject: [PATCH] Update developer docs for using tox --- source/developers/index.markdown | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/developers/index.markdown b/source/developers/index.markdown index dfd5068fd48d..f7d376c7473f 100644 --- a/source/developers/index.markdown +++ b/source/developers/index.markdown @@ -40,7 +40,7 @@ Improvements to Home Assistant should be submitted one feature at a time using G `git checkout -b some-feature` 2. Make the changes you want 3. Test your changes and check for style violations - `./script/test` + `tox` 4. Commit the changes `git add .` `git commit -m "Added some-feature"` @@ -48,6 +48,12 @@ Improvements to Home Assistant should be submitted one feature at a time using G `git push origin HEAD` 6. Follow [these steps](https://help.github.com/articles/creating-a-pull-request/) to create your pull request. +Note that the above requires `tox` to be installed. If you don't have it, do this: + +```bash +$ pip3 install tox +``` + ### {% linkable_title Further reading %} - [Home Assistant Architecture](/developers/architecture/)