From 07c779bad0e9191406864d57ba0c9de24b436ece Mon Sep 17 00:00:00 2001 From: rappenze Date: Tue, 23 Aug 2022 11:49:37 +0200 Subject: [PATCH] Fix the pytest command on testing page (#1440) --- docs/development_testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development_testing.md b/docs/development_testing.md index 808914df..19372e32 100644 --- a/docs/development_testing.md +++ b/docs/development_testing.md @@ -77,7 +77,7 @@ script/lint In case you want to check the code coverage for your new component, run the following from the root of the repository: ```shell -pytest ./tests/components// --asyncio-mode=strict --cov=homeassistant.components. --cov-report term-missing -vv +pytest ./tests/components// --cov=homeassistant.components. --cov-report term-missing -vv ``` ### Preventing linter errors