diff --git a/atom.xml b/atom.xml index 24aaf6e1b0..1e0244d087 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
You can pass arguments via Tox to py.test to be able to run single test suites or test files. Replace py36
with the Python version that you use.
# Stop after the first test fails
-$ tox -e py36 tests/test_core.py -x
+$ tox -e py36 -- tests/test_core.py -x
# Run test with specified name
-$ tox -e py36 tests/test_core.py -k test_split_entity_id
+$ tox -e py36 -- tests/test_core.py -k test_split_entity_id
# Fail a test after it runs for 2 seconds
-$ tox -e py36 tests/test_core.py --timeout 2
+$ tox -e py36 -- tests/test_core.py --timeout 2
# Show the 10 slowest tests
-$ tox -e py36 tests/test_core.py --duration=10
+$ tox -e py36 -- tests/test_core.py --duration=10
Now that you installed python, there are two ways to install Home Assistant:
root
, using the [VirtualEnv instructions](/docs/installation/virtualenv/root
, using the VirtualEnv instructions$ sudo pip3 install homeassistant
$ hass --open-ui
@@ -87,7 +87,7 @@
- Install Home Assistant
- Launch Home Assistant and serve the web interface on http://localhost:8123
- - the configuration files will be created in /home/
/.homeassistant
+ - the configuration files will be created in /home/{user}/.homeassistant