Issue bytes vs str related warnings from tests (#101186)

This commit is contained in:
Ville Skyttä 2023-11-27 22:59:54 +02:00 committed by GitHub
parent 5cde367366
commit fd5cda4ec6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View file

@ -103,10 +103,11 @@ def main():
if args.develop:
print("Running tests")
print(f"$ python3 -m pytest -vvv tests/components/{info.domain}")
print(f"$ python3 -b -m pytest -vvv tests/components/{info.domain}")
subprocess.run(
[
"python3",
"-b",
"-m",
"pytest",
"-vvv",